Skip to main content

Recommendations API

GET/widgets/recommendations
Test Account: TSVHartberg
Number of queries: > 2806
Timer: 7892.349999999992 ms
  • Issue: The excessive number of queries leading to SQL system flooding
  • Assessment: The flooding of the SQL system slows down the page loading process, and it could crash the system if there are many concurrent users (CCU).

Preliminary solution:

Modify the code logic, use the singleton design pattern to manager Player/User data to avoid multiple queries. Use WHERE IN to retrieve parameters from the array to avoid multiple loop queries.

Details

1. Controller/action - model

WidgetController.php(670): calculate_week_to_week_player_parameter('2024-01-18', 108812, 3374, true)

helpers.php(1697): calculate_player_parameter_of_week('2024-01-11', 108812, 3374, true)

helpers.php(1718): calculate_predict_player_parameter_of_date(3374, '2024-01-08', 108812, true)

helpers.php(1873): App\Models\Player->getDateParameterValue('2024-01-08', 3374, Array)

Models/Player.php(341): App\Models\Player->getDateParameters('2024-01-08', Array)

Models/Player.php(348): getParametersOfPlayerInDate(108812, '2024-01-08', 116, Array)

helpers.php(788): get_all_parameters(116)

WidgetController.php(719): App\Models\Player->calculateAcuteLoad('2024-01-18', 3374)

Models/Player.php(501): App\Models\Player->getAcuteChronicConfig(3374)

/WidgetController.php(669): get_parameter_by_id(3375)
Details

2. The SQL queries causing loop errors

  • Found queries to the players table with different players.id values, a total of 1564 SQL queries were found.
select * from `players` 
where `players`.`id` = 87121
limit 1
  • Found queries to the users_parameters table with different users_parameters.parameter_id values, a total of 77 SQL queries were found.
select * from `users_parameters` 
where
`users_parameters`.`parameter_id` = 3374 and
`users_parameters`.`parameter_id` is not null and
`parameter_id` = 3374 and
`user_id` = 116
limit 1
  • Found queries to the files table with different files.id values, a total of 115 SQL queries were found.
select * from `files` 
where
`files`.`id` = 3384 and
`files`.`id` is not null
limit 1
  • Found queries to the users_deactivated_parameters table with different parameter_id values, a total of 121 SQL queries were found.
select count(*) as aggregate from `users_deactivated_parameters` 
where
`user_id` = 116 and
`parameter_id` = 3374
  • Found queries to the acute_chronic_configs table with different parameter_id;player_id values, a total of 615 SQL queries were found.
select * from `acute_chronic_configs` 
where
`acute_chronic_configs`.`user_id` = 116 and
`acute_chronic_configs`.`user_id` is not null and
`parameter_id` = 3374 and
`player_id` = 108812 limit 1
  • Found queries to the users table with different users.id values, a total of 177 SQL queries were found.
select * from `users` 
where
`users`.`id` = 116 and
`users`.`deleted_at` is null
limit 1
  • Found queries to the players_speeds_with_sub table with different players_speeds_with_sub.player_id; players_speeds_with_sub.parameter_id;players_speeds_with_sub.value values, a total of 34 SQL queries were found.
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` 
inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id`
where
`players_speeds_with_sub`.`player_id` = 107728 and
`players_speeds_with_sub`.`parameter_id` = '38742' and
`players_speeds_with_sub`.`value` > 8.838 and
`sessions`.`end_at` <= '2024-01-18 10:39:38'
order by `sessions`.`end_at` desc
limit 1
  • Found queries to the presence_lists table with different player_id values, a total of 34 SQL queries were found.
select `presence_option_id`, `note`, `date` from `presence_lists` 
where
`player_id` = 108812
order by `date` desc
Details

3. The entire SQL queries of the API /widgets/alert

select * from `auth_sessions` where `id` = 'RxOKdEYt9GEK8NLHBFzXjv1CPDm0yy3GoZwnQbDg' limit 1	3.01 
select * from `users` where `id` = 116 and `users`.`deleted_at` is null limit 1 1.19
select count(*) as aggregate from `questions` where `questions`.`user_id` = 116 and `questions`.`user_id` is not null and `is_system` = 1 3.98
select count(*) as aggregate from `notifications` where `notifications`.`user_id` = 116 and `notifications`.`user_id` is not null and `is_system` = 1 1.01
select count(*) as aggregate from `medic_settings_acute_injury` where `type` = 'categories' and `user_id` = 116 12.49
select count(*) as aggregate from `medic_settings_acute_injury` where `type` = 'rehab' and `user_id` = 116 12.68
select count(*) as aggregate from `medic_settings_acute_injury` where `type` = 'rehab' and `user_id` = 116 and `name` = 'Illness' 14.33
select count(*) as aggregate from `medic_settings_acute_injury` where `type` = 'rehab' and `user_id` = 116 and `name` = 'Full' 14.36
select count(*) as aggregate from `medic_settings_acute_injury` where `type` = 'localisation' and `user_id` = 116 12.6
select count(*) as aggregate from `medic_settings_acute_injury` where `type` = 'precisley' and `user_id` = 116 12.85
select count(*) as aggregate from `medic_settings_acute_injury` where `type` = 'rehab' and `name` = 'SUA' and `user_id` = 116 14.14
select * from `medic_settings_acute_injury` where `type` = 'categories' and `name` = 'Tendons' and `user_id` = 116 limit 1 0.76
select * from `medic_settings_acute_injury` where `type` = 'localisation' and `id_parent` = 333 24.18
select * from `medic_settings_acute_injury` where `type` = 'diagnosis' and `id_parent` = 333 24.08
select * from `medic_settings_acute_injury` where `type` = 'categories' and `name` = 'Cartilage' and `user_id` = 116 limit 1 0.79
select * from `medic_settings_acute_injury` where `type` = 'localisation' and `id_parent` = 334 24.12
select * from `medic_settings_acute_injury` where `type` = 'diagnosis' and `id_parent` = 334 24.12
select * from `medic_settings_acute_injury` where `type` = 'categories' and `name` = 'Bones' and `user_id` = 116 limit 1 0.7
select * from `medic_settings_acute_injury` where `type` = 'localisation' and `id_parent` = 332 24.06
select * from `medic_settings_acute_injury` where `type` = 'diagnosis' and `id_parent` = 332 23.95
select * from `medic_settings_acute_injury` where `type` = 'categories' and `user_id` = 116 and `name` = 'Cartilage' limit 1 0.69
select * from `medic_settings_acute_injury` where `type` = 'diagnosis' and `user_id` = 116 and `name` = 'Rupture' and `id_parent` = 334 limit 1 2.95
select * from `medic_settings_acute_injury` where `type` = 'categories' and `user_id` = 116 and `name` = 'Cartilage' limit 1 0.7
select * from `medic_settings_acute_injury` where `type` = 'diagnosis' and `user_id` = 116 and `name` = 'Partial rupture' and `id_parent` = 334 limit 1 2.99
select * from `medic_settings_acute_injury` where `type` = 'categories' and `user_id` = 116 and `name` = 'Tendons' limit 1 0.64
select * from `medic_settings_acute_injury` where `type` = 'diagnosis' and `user_id` = 116 and `name` = 'Tendon partial rupture' and `id_parent` = 333 limit 1 2.99
select count(*) as aggregate from `teams` where `teams`.`user_id` = 116 and `teams`.`user_id` is not null 0.8
select * from `teams` where `teams`.`user_id` = 116 and `teams`.`user_id` is not null limit 1 0.7
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.12
select * from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `deactivated_at` is null 2.63
select * from `players_details` where `players_details`.`player_id` in (16999, 17005, 17013, 17027, 36128, 87119, 87121, 107728, 108812, 148665, 149051, 149053, 149632, 149726, 149735, 149877, 149933, 149976, 149977, 149982, 149983, 151461, 151462, 151463, 151568, 151569, 151589, 151591, 151594, 151596, 151652, 151697, 151928, 151937) 2.17
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.04
select `value` from `users_configs` where `users_configs`.`user_id` = 116 and `users_configs`.`user_id` is not null and `key` = 'recommendation_parameters' limit 1 0.87
select * from `parameters` where `id` in ('3374', '3375', '18495') order by id=3374 DESC, id=3375 DESC, id=18495 DESC 3.43
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.02
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null 0.84
select * from `parameters` where `parameters`.`id` = 3374 limit 1 1.17
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3374 0.72
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3374 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3374 and `user_id` = 116 limit 1 0.75
select * from `files` where `files`.`id` = 3384 and `files`.`id` is not null limit 1 0.93
select * from `files` where `files`.`id` = 3384 and `files`.`id` is not null limit 1 1.02
select * from `players` where `players`.`id` = 108812 limit 1 1.02
select * from `parameters` where `user_id` = 116 or `user_id` is null order by `order` IS NULL ASC, `order` asc, `name` asc 26.32
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3374 0.7
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3374 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3374 and `user_id` = 116 limit 1 0.77
select * from `files` where `files`.`id` = 3384 and `files`.`id` is not null limit 1 1.07
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3375 0.67
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3375 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3375 and `user_id` = 116 limit 1 0.71
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.54
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3376 0.75
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3376 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3376 and `user_id` = 116 limit 1 0.79
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.52
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3377 0.83
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3377 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3377 and `user_id` = 116 limit 1 0.76
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.54
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3378 0.78
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3378 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3378 and `user_id` = 116 limit 1 0.83
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.55
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 21950 0.79
select * from `users_parameters` where `users_parameters`.`parameter_id` = 21950 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 21950 and `user_id` = 116 limit 1 0.84
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.55
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48356 0.78
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48356 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48356 and `user_id` = 116 limit 1 0.78
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 1.14
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48357 0.76
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48357 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48357 and `user_id` = 116 limit 1 0.85
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.53
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18501 0.83
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18501 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18501 and `user_id` = 116 limit 1 1.2
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 1.12
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18502 0.82
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18502 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18502 and `user_id` = 116 limit 1 1.25
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.57
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48354 0.99
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48354 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48354 and `user_id` = 116 limit 1 2.3
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 1.24
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48355 0.77
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48355 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48355 and `user_id` = 116 limit 1 0.88
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.81
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48365 0.6
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48365 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48365 and `user_id` = 116 limit 1 0.62
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.8
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48366 0.85
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48366 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48366 and `user_id` = 116 limit 1 0.55
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.78
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3383 0.57
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3383 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3383 and `user_id` = 116 limit 1 0.51
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.45
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48360 0.61
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48360 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48360 and `user_id` = 116 limit 1 0.75
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.92
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48361 0.99
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48361 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48361 and `user_id` = 116 limit 1 0.61
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.44
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18503 0.67
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18503 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18503 and `user_id` = 116 limit 1 0.73
select * from `files` where `files`.`id` = 3974 and `files`.`id` is not null limit 1 1.02
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18504 0.64
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18504 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18504 and `user_id` = 116 limit 1 0.56
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.42
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48358 0.65
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48358 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48358 and `user_id` = 116 limit 1 0.56
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.77
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48359 0.55
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48359 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48359 and `user_id` = 116 limit 1 1.1
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.93
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48367 0.72
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48367 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48367 and `user_id` = 116 limit 1 0.73
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 1.03
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48368 0.55
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48368 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48368 and `user_id` = 116 limit 1 0.56
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.76
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18486 0.58
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18486 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18486 and `user_id` = 116 limit 1 0.62
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.37
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18493 0.57
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18493 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18493 and `user_id` = 116 limit 1 0.69
select * from `files` where `files`.`id` = 18796 and `files`.`id` is not null limit 1 1.03
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154179 0.72
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154179 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154179 and `user_id` = 116 limit 1 0.63
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.45
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154180 0.72
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154180 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154180 and `user_id` = 116 limit 1 0.69
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.39
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154469 0.83
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154469 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154469 and `user_id` = 116 limit 1 0.75
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.51
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154470 0.75
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154470 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154470 and `user_id` = 116 limit 1 0.8
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.57
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18494 0.71
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18494 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18494 and `user_id` = 116 limit 1 0.78
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.45
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18497 0.55
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18497 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18497 and `user_id` = 116 limit 1 0.58
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.38
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18498 0.82
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18498 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18498 and `user_id` = 116 limit 1 0.79
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.59
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154461 0.76
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154461 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154461 and `user_id` = 116 limit 1 0.65
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.47
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154462 0.77
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154462 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154462 and `user_id` = 116 limit 1 0.71
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.46
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 78671 0.64
select * from `users_parameters` where `users_parameters`.`parameter_id` = 78671 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 78671 and `user_id` = 116 limit 1 0.66
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.85
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 78672 0.83
select * from `users_parameters` where `users_parameters`.`parameter_id` = 78672 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 78672 and `user_id` = 116 limit 1 0.81
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.84
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154465 0.71
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154465 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154465 and `user_id` = 116 limit 1 0.7
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.5
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154466 0.96
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154466 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154466 and `user_id` = 116 limit 1 0.66
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.45
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154463 0.64
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154463 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154463 and `user_id` = 116 limit 1 0.63
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.44
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154464 0.77
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154464 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154464 and `user_id` = 116 limit 1 0.67
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.44
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48137 0.59
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48137 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48137 and `user_id` = 116 limit 1 0.76
select * from `files` where `files`.`id` = 3972 and `files`.`id` is not null limit 1 0.92
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 48138 0.61
select * from `users_parameters` where `users_parameters`.`parameter_id` = 48138 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 48138 and `user_id` = 116 limit 1 0.64
select * from `files` where `files`.`id` = 3972 and `files`.`id` is not null limit 1 0.89
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 23182 0.7
select * from `users_parameters` where `users_parameters`.`parameter_id` = 23182 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 23182 and `user_id` = 116 limit 1 0.65
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.49
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18491 0.61
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18491 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18491 and `user_id` = 116 limit 1 0.67
select * from `files` where `files`.`id` = 3972 and `files`.`id` is not null limit 1 0.79
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18492 0.56
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18492 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18492 and `user_id` = 116 limit 1 0.6
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 1.16
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 66690 0.67
select * from `users_parameters` where `users_parameters`.`parameter_id` = 66690 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 66690 and `user_id` = 116 limit 1 0.67
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.93
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3382 0.66
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3382 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3382 and `user_id` = 116 limit 1 0.78
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.49
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 66691 0.55
select * from `users_parameters` where `users_parameters`.`parameter_id` = 66691 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 66691 and `user_id` = 116 limit 1 0.59
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.51
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18449 0.61
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18449 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18449 and `user_id` = 116 limit 1 0.66
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.49
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154181 0.62
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154181 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154181 and `user_id` = 116 limit 1 0.64
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.49
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154182 0.82
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154182 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154182 and `user_id` = 116 limit 1 0.78
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.62
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18487 0.66
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18487 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18487 and `user_id` = 116 limit 1 0.7
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.87
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18488 1.33
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18488 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18488 and `user_id` = 116 limit 1 0.72
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.52
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18499 0.72
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18499 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18499 and `user_id` = 116 limit 1 0.76
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.48
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18500 0.7
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18500 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18500 and `user_id` = 116 limit 1 0.66
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.43
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 38742 0.66
select * from `users_parameters` where `users_parameters`.`parameter_id` = 38742 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 38742 and `user_id` = 116 limit 1 0.65
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.98
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 38743 0.65
select * from `users_parameters` where `users_parameters`.`parameter_id` = 38743 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 38743 and `user_id` = 116 limit 1 0.71
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.93
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154467 0.66
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154467 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154467 and `user_id` = 116 limit 1 0.67
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.54
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154468 0.65
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154468 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154468 and `user_id` = 116 limit 1 0.63
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.6
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3380 0.64
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3380 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3380 and `user_id` = 116 limit 1 0.73
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.42
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18448 0.66
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18448 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18448 and `user_id` = 116 limit 1 0.71
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.44
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 4289 0.64
select * from `users_parameters` where `users_parameters`.`parameter_id` = 4289 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 4289 and `user_id` = 116 limit 1 0.65
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.47
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 4170 0.61
select * from `users_parameters` where `users_parameters`.`parameter_id` = 4170 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 4170 and `user_id` = 116 limit 1 0.65
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.41
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18505 0.83
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18505 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18505 and `user_id` = 116 limit 1 0.69
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.47
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18506 0.66
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18506 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18506 and `user_id` = 116 limit 1 0.79
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.46
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18495 0.67
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18495 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18495 and `user_id` = 116 limit 1 0.73
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.91
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 51293 0.72
select * from `users_parameters` where `users_parameters`.`parameter_id` = 51293 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 51293 and `user_id` = 116 limit 1 0.69
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.44
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 51294 0.67
select * from `users_parameters` where `users_parameters`.`parameter_id` = 51294 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 51294 and `user_id` = 116 limit 1 0.67
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.44
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18496 0.65
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18496 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18496 and `user_id` = 116 limit 1 0.67
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.59
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18489 0.68
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18489 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18489 and `user_id` = 116 limit 1 0.65
select * from `files` where `files`.`id` = 3972 and `files`.`id` is not null limit 1 0.87
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18490 0.64
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18490 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18490 and `user_id` = 116 limit 1 0.74
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.41
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154459 0.58
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154459 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154459 and `user_id` = 116 limit 1 0.57
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.63
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 154460 0.61
select * from `users_parameters` where `users_parameters`.`parameter_id` = 154460 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 154460 and `user_id` = 116 limit 1 0.67
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.41
select * from `players` where `players`.`id` = 108812 limit 1 0.98
select * from `players` where `players`.`id` = 108812 limit 1 0.93
select * from `players` where `players`.`id` = 108812 limit 1 0.9
select * from `players` where `players`.`id` = 108812 limit 1 0.95
select * from `players` where `players`.`id` = 108812 limit 1 0.98
select * from `players` where `players`.`id` = 108812 limit 1 0.99
select * from `players` where `players`.`id` = 108812 limit 1 1.07
select * from `players` where `players`.`id` = 108812 limit 1 0.94
select * from `players` where `players`.`id` = 108812 limit 1 0.95
select * from `players` where `players`.`id` = 108812 limit 1 0.95
select * from `players` where `players`.`id` = 108812 limit 1 1.06
select * from `players` where `players`.`id` = 108812 limit 1 1
select * from `players` where `players`.`id` = 108812 limit 1 1
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.02
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 108812 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 108812 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `players` where `players`.`id` = 108812 limit 1 0.91
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.98
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 108812 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.68
select * from `parameters` where `parameters`.`id` = 3375 limit 1 0.98
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 3375 0.65
select * from `users_parameters` where `users_parameters`.`parameter_id` = 3375 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 3375 and `user_id` = 116 limit 1 0.71
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.43
select * from `files` where `files`.`id` is null and `files`.`id` is not null limit 1 0.53
select * from `players` where `players`.`id` = 108812 limit 1 1.11
select * from `players` where `players`.`id` = 108812 limit 1 1.18
select * from `players` where `players`.`id` = 108812 limit 1 1.18
select * from `players` where `players`.`id` = 108812 limit 1 1.11
select * from `players` where `players`.`id` = 108812 limit 1 1.26
select * from `players` where `players`.`id` = 108812 limit 1 1.13
select * from `players` where `players`.`id` = 108812 limit 1 1.13
select * from `players` where `players`.`id` = 108812 limit 1 1.21
select * from `players` where `players`.`id` = 108812 limit 1 1.18
select * from `players` where `players`.`id` = 108812 limit 1 1.22
select * from `players` where `players`.`id` = 108812 limit 1 1.14
select * from `players` where `players`.`id` = 108812 limit 1 1.38
select * from `players` where `players`.`id` = 108812 limit 1 1.28
select * from `players` where `players`.`id` = 108812 limit 1 1.07
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 108812 limit 1 1.11
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 108812 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `players` where `players`.`id` = 108812 limit 1 1.01
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.52
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 108812 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.97
select `value` from `users_configs` where `users_configs`.`user_id` = 116 and `users_configs`.`user_id` is not null and `key` = 'need_for_speed_config' limit 1 0.8
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 108812 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.964 and `sessions`.`end_at` <= '2024-01-18 10:39:38' order by `sessions`.`end_at` desc limit 1 35.48
select * from `parameters` where `parameters`.`id` = 18495 limit 1 0.77
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18495 0.53
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18495 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18495 and `user_id` = 116 limit 1 0.65
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.8
select * from `files` where `files`.`id` = 3973 and `files`.`id` is not null limit 1 0.92
select * from `players` where `players`.`id` = 108812 limit 1 0.88
select * from `players` where `players`.`id` = 108812 limit 1 0.87
select * from `players` where `players`.`id` = 108812 limit 1 0.91
select * from `players` where `players`.`id` = 108812 limit 1 1
select * from `players` where `players`.`id` = 108812 limit 1 0.89
select * from `players` where `players`.`id` = 108812 limit 1 1.11
select * from `players` where `players`.`id` = 108812 limit 1 0.91
select * from `players` where `players`.`id` = 108812 limit 1 0.89
select * from `players` where `players`.`id` = 108812 limit 1 0.82
select * from `players` where `players`.`id` = 108812 limit 1 0.81
select * from `players` where `players`.`id` = 108812 limit 1 1.08
select * from `players` where `players`.`id` = 108812 limit 1 0.81
select * from `players` where `players`.`id` = 108812 limit 1 0.76
select * from `players` where `players`.`id` = 108812 limit 1 0.87
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 108812 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 108812 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `players` where `players`.`id` = 108812 limit 1 0.96
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.87
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 108812 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.68
select * from `players` where `players`.`id` = 107728 limit 1 0.83
select * from `players` where `players`.`id` = 107728 limit 1 0.86
select * from `players` where `players`.`id` = 107728 limit 1 0.94
select * from `players` where `players`.`id` = 107728 limit 1 0.95
select * from `players` where `players`.`id` = 107728 limit 1 0.94
select * from `players` where `players`.`id` = 107728 limit 1 0.91
select * from `players` where `players`.`id` = 107728 limit 1 0.77
select * from `players` where `players`.`id` = 107728 limit 1 0.99
select * from `players` where `players`.`id` = 107728 limit 1 0.86
select * from `players` where `players`.`id` = 107728 limit 1 0.81
select * from `players` where `players`.`id` = 107728 limit 1 1.22
select * from `players` where `players`.`id` = 107728 limit 1 1.14
select * from `players` where `players`.`id` = 107728 limit 1 0.9
select * from `players` where `players`.`id` = 107728 limit 1 1.13
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.19
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 107728 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 107728 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 107728 limit 1 0.91
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.04
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 107728 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.85
select * from `players` where `players`.`id` = 107728 limit 1 1.04
select * from `players` where `players`.`id` = 107728 limit 1 1.01
select * from `players` where `players`.`id` = 107728 limit 1 0.91
select * from `players` where `players`.`id` = 107728 limit 1 0.86
select * from `players` where `players`.`id` = 107728 limit 1 0.86
select * from `players` where `players`.`id` = 107728 limit 1 0.99
select * from `players` where `players`.`id` = 107728 limit 1 0.88
select * from `players` where `players`.`id` = 107728 limit 1 0.92
select * from `players` where `players`.`id` = 107728 limit 1 1.08
select * from `players` where `players`.`id` = 107728 limit 1 1.1
select * from `players` where `players`.`id` = 107728 limit 1 1.16
select * from `players` where `players`.`id` = 107728 limit 1 1.16
select * from `players` where `players`.`id` = 107728 limit 1 1.02
select * from `players` where `players`.`id` = 107728 limit 1 0.91
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 107728 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 107728 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `players` where `players`.`id` = 107728 limit 1 1.02
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.01
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 107728 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.8
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 107728 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.838 and `sessions`.`end_at` <= '2024-01-18 10:39:38' order by `sessions`.`end_at` desc limit 1 27.84
select * from `players` where `players`.`id` = 107728 limit 1 0.99
select * from `players` where `players`.`id` = 107728 limit 1 1
select * from `players` where `players`.`id` = 107728 limit 1 1.19
select * from `players` where `players`.`id` = 107728 limit 1 0.99
select * from `players` where `players`.`id` = 107728 limit 1 1.04
select * from `players` where `players`.`id` = 107728 limit 1 1.1
select * from `players` where `players`.`id` = 107728 limit 1 1.01
select * from `players` where `players`.`id` = 107728 limit 1 0.98
select * from `players` where `players`.`id` = 107728 limit 1 1.12
select * from `players` where `players`.`id` = 107728 limit 1 0.98
select * from `players` where `players`.`id` = 107728 limit 1 0.99
select * from `players` where `players`.`id` = 107728 limit 1 1.02
select * from `players` where `players`.`id` = 107728 limit 1 0.95
select * from `players` where `players`.`id` = 107728 limit 1 1.11
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 107728 limit 1 0.84
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 107728 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 107728 limit 1 1.28
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 107728 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `players` where `players`.`id` = 87121 limit 1 1.12
select * from `players` where `players`.`id` = 87121 limit 1 1.18
select * from `players` where `players`.`id` = 87121 limit 1 0.86
select * from `players` where `players`.`id` = 87121 limit 1 0.97
select * from `players` where `players`.`id` = 87121 limit 1 1.13
select * from `players` where `players`.`id` = 87121 limit 1 0.89
select * from `players` where `players`.`id` = 87121 limit 1 1.15
select * from `players` where `players`.`id` = 87121 limit 1 1.04
select * from `players` where `players`.`id` = 87121 limit 1 0.88
select * from `players` where `players`.`id` = 87121 limit 1 0.9
select * from `players` where `players`.`id` = 87121 limit 1 0.95
select * from `players` where `players`.`id` = 87121 limit 1 0.87
select * from `players` where `players`.`id` = 87121 limit 1 0.88
select * from `players` where `players`.`id` = 87121 limit 1 0.88
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.88
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 87121 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 87121 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.66
select * from `players` where `players`.`id` = 87121 limit 1 0.86
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.09
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 87121 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `players` where `players`.`id` = 87121 limit 1 1
select * from `players` where `players`.`id` = 87121 limit 1 0.96
select * from `players` where `players`.`id` = 87121 limit 1 0.97
select * from `players` where `players`.`id` = 87121 limit 1 1.05
select * from `players` where `players`.`id` = 87121 limit 1 1.1
select * from `players` where `players`.`id` = 87121 limit 1 0.97
select * from `players` where `players`.`id` = 87121 limit 1 1.03
select * from `players` where `players`.`id` = 87121 limit 1 1.05
select * from `players` where `players`.`id` = 87121 limit 1 1.09
select * from `players` where `players`.`id` = 87121 limit 1 1.02
select * from `players` where `players`.`id` = 87121 limit 1 0.96
select * from `players` where `players`.`id` = 87121 limit 1 1.06
select * from `players` where `players`.`id` = 87121 limit 1 1.07
select * from `players` where `players`.`id` = 87121 limit 1 1.03
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 87121 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 87121 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 87121 limit 1 1.06
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 87121 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.64
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 87121 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.946 and `sessions`.`end_at` <= '2024-01-18 10:39:39' order by `sessions`.`end_at` desc limit 1 27.47
select * from `players` where `players`.`id` = 87121 limit 1 0.99
select * from `players` where `players`.`id` = 87121 limit 1 0.98
select * from `players` where `players`.`id` = 87121 limit 1 1.1
select * from `players` where `players`.`id` = 87121 limit 1 1.24
select * from `players` where `players`.`id` = 87121 limit 1 1.04
select * from `players` where `players`.`id` = 87121 limit 1 1.18
select * from `players` where `players`.`id` = 87121 limit 1 1.2
select * from `players` where `players`.`id` = 87121 limit 1 1.15
select * from `players` where `players`.`id` = 87121 limit 1 1.04
select * from `players` where `players`.`id` = 87121 limit 1 1.02
select * from `players` where `players`.`id` = 87121 limit 1 1.26
select * from `players` where `players`.`id` = 87121 limit 1 1.27
select * from `players` where `players`.`id` = 87121 limit 1 1.17
select * from `players` where `players`.`id` = 87121 limit 1 1.17
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 87121 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 87121 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 87121 limit 1 0.98
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.14
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 87121 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.67
select * from `players` where `players`.`id` = 87119 limit 1 0.99
select * from `players` where `players`.`id` = 87119 limit 1 0.93
select * from `players` where `players`.`id` = 87119 limit 1 1.65
select * from `players` where `players`.`id` = 87119 limit 1 1.08
select * from `players` where `players`.`id` = 87119 limit 1 0.86
select * from `players` where `players`.`id` = 87119 limit 1 1.11
select * from `players` where `players`.`id` = 87119 limit 1 0.86
select * from `players` where `players`.`id` = 87119 limit 1 1.04
select * from `players` where `players`.`id` = 87119 limit 1 0.91
select * from `players` where `players`.`id` = 87119 limit 1 0.98
select * from `players` where `players`.`id` = 87119 limit 1 0.9
select * from `players` where `players`.`id` = 87119 limit 1 0.91
select * from `players` where `players`.`id` = 87119 limit 1 0.98
select * from `players` where `players`.`id` = 87119 limit 1 1.04
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.12
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 87119 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 87119 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.67
select * from `players` where `players`.`id` = 87119 limit 1 0.89
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 87119 limit 1 0.86
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.73
select * from `players` where `players`.`id` = 87119 limit 1 1.14
select * from `players` where `players`.`id` = 87119 limit 1 1.1
select * from `players` where `players`.`id` = 87119 limit 1 1.21
select * from `players` where `players`.`id` = 87119 limit 1 1.17
select * from `players` where `players`.`id` = 87119 limit 1 1.03
select * from `players` where `players`.`id` = 87119 limit 1 1.1
select * from `players` where `players`.`id` = 87119 limit 1 1.04
select * from `players` where `players`.`id` = 87119 limit 1 1.15
select * from `players` where `players`.`id` = 87119 limit 1 1.02
select * from `players` where `players`.`id` = 87119 limit 1 0.98
select * from `players` where `players`.`id` = 87119 limit 1 1.1
select * from `players` where `players`.`id` = 87119 limit 1 1.28
select * from `players` where `players`.`id` = 87119 limit 1 1.1
select * from `players` where `players`.`id` = 87119 limit 1 1.23
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 87119 limit 1 0.89
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 87119 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `players` where `players`.`id` = 87119 limit 1 3.51
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.22
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 87119 limit 1 0.86
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.84
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 87119 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 0 and `sessions`.`end_at` <= '2024-01-18 10:39:39' order by `sessions`.`end_at` desc limit 1 21.95
select `date`, `value` from `players_speeds_with_sub` where `player_id` = 87119 and `parameter_id` = '38742' and `value` > 0 and `date` <= '2024-01-18' order by `date` desc limit 1 20.92
select * from `players` where `players`.`id` = 87119 limit 1 1.18
select * from `players` where `players`.`id` = 87119 limit 1 1.21
select * from `players` where `players`.`id` = 87119 limit 1 1.09
select * from `players` where `players`.`id` = 87119 limit 1 1.07
select * from `players` where `players`.`id` = 87119 limit 1 1.09
select * from `players` where `players`.`id` = 87119 limit 1 1.25
select * from `players` where `players`.`id` = 87119 limit 1 1.16
select * from `players` where `players`.`id` = 87119 limit 1 1.19
select * from `players` where `players`.`id` = 87119 limit 1 1.23
select * from `players` where `players`.`id` = 87119 limit 1 1.16
select * from `players` where `players`.`id` = 87119 limit 1 1.27
select * from `players` where `players`.`id` = 87119 limit 1 1.22
select * from `players` where `players`.`id` = 87119 limit 1 1.31
select * from `players` where `players`.`id` = 87119 limit 1 1.21
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 87119 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 87119 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `players` where `players`.`id` = 87119 limit 1 1.16
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.28
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 87119 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 36128 limit 1 1.18
select * from `players` where `players`.`id` = 36128 limit 1 1.14
select * from `players` where `players`.`id` = 36128 limit 1 1.25
select * from `players` where `players`.`id` = 36128 limit 1 1.15
select * from `players` where `players`.`id` = 36128 limit 1 1.13
select * from `players` where `players`.`id` = 36128 limit 1 1.03
select * from `players` where `players`.`id` = 36128 limit 1 1.02
select * from `players` where `players`.`id` = 36128 limit 1 1.06
select * from `players` where `players`.`id` = 36128 limit 1 1.06
select * from `players` where `players`.`id` = 36128 limit 1 0.98
select * from `players` where `players`.`id` = 36128 limit 1 1.24
select * from `players` where `players`.`id` = 36128 limit 1 1.03
select * from `players` where `players`.`id` = 36128 limit 1 0.96
select * from `players` where `players`.`id` = 36128 limit 1 0.98
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.97
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 36128 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 36128 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `players` where `players`.`id` = 36128 limit 1 1.04
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.09
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 36128 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.86
select * from `players` where `players`.`id` = 36128 limit 1 1.29
select * from `players` where `players`.`id` = 36128 limit 1 1.1
select * from `players` where `players`.`id` = 36128 limit 1 1.05
select * from `players` where `players`.`id` = 36128 limit 1 1.26
select * from `players` where `players`.`id` = 36128 limit 1 1.03
select * from `players` where `players`.`id` = 36128 limit 1 1.12
select * from `players` where `players`.`id` = 36128 limit 1 1.11
select * from `players` where `players`.`id` = 36128 limit 1 1.07
select * from `players` where `players`.`id` = 36128 limit 1 1.1
select * from `players` where `players`.`id` = 36128 limit 1 1.13
select * from `players` where `players`.`id` = 36128 limit 1 1.55
select * from `players` where `players`.`id` = 36128 limit 1 1.1
select * from `players` where `players`.`id` = 36128 limit 1 1.29
select * from `players` where `players`.`id` = 36128 limit 1 1.15
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 36128 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 36128 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.93
select * from `players` where `players`.`id` = 36128 limit 1 1.22
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.32
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 36128 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.89
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 36128 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 7.659 and `sessions`.`end_at` <= '2024-01-18 10:39:39' order by `sessions`.`end_at` desc limit 1 52.91
select * from `players` where `players`.`id` = 36128 limit 1 1.28
select * from `players` where `players`.`id` = 36128 limit 1 1.25
select * from `players` where `players`.`id` = 36128 limit 1 1.32
select * from `players` where `players`.`id` = 36128 limit 1 1.27
select * from `players` where `players`.`id` = 36128 limit 1 1.19
select * from `players` where `players`.`id` = 36128 limit 1 1.66
select * from `players` where `players`.`id` = 36128 limit 1 1.31
select * from `players` where `players`.`id` = 36128 limit 1 1.99
select * from `players` where `players`.`id` = 36128 limit 1 1.26
select * from `players` where `players`.`id` = 36128 limit 1 1.31
select * from `players` where `players`.`id` = 36128 limit 1 2.05
select * from `players` where `players`.`id` = 36128 limit 1 1.19
select * from `players` where `players`.`id` = 36128 limit 1 1.06
select * from `players` where `players`.`id` = 36128 limit 1 1.33
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 36128 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 36128 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `players` where `players`.`id` = 36128 limit 1 1.31
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.29
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 36128 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `players` where `players`.`id` = 17027 limit 1 1.2
select * from `players` where `players`.`id` = 17027 limit 1 1.38
select * from `players` where `players`.`id` = 17027 limit 1 1.22
select * from `players` where `players`.`id` = 17027 limit 1 1.11
select * from `players` where `players`.`id` = 17027 limit 1 1.26
select * from `players` where `players`.`id` = 17027 limit 1 1.15
select * from `players` where `players`.`id` = 17027 limit 1 1.18
select * from `players` where `players`.`id` = 17027 limit 1 1.18
select * from `players` where `players`.`id` = 17027 limit 1 1.17
select * from `players` where `players`.`id` = 17027 limit 1 1.04
select * from `players` where `players`.`id` = 17027 limit 1 1.16
select * from `players` where `players`.`id` = 17027 limit 1 1.16
select * from `players` where `players`.`id` = 17027 limit 1 1.17
select * from `players` where `players`.`id` = 17027 limit 1 1.11
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.07
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 17027 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 17027 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 17027 limit 1 1.12
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.11
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 17027 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 17027 limit 1 1.06
select * from `players` where `players`.`id` = 17027 limit 1 1.05
select * from `players` where `players`.`id` = 17027 limit 1 1.08
select * from `players` where `players`.`id` = 17027 limit 1 0.94
select * from `players` where `players`.`id` = 17027 limit 1 1.07
select * from `players` where `players`.`id` = 17027 limit 1 1.26
select * from `players` where `players`.`id` = 17027 limit 1 1.05
select * from `players` where `players`.`id` = 17027 limit 1 1.19
select * from `players` where `players`.`id` = 17027 limit 1 1.2
select * from `players` where `players`.`id` = 17027 limit 1 0.96
select * from `players` where `players`.`id` = 17027 limit 1 1.08
select * from `players` where `players`.`id` = 17027 limit 1 1.04
select * from `players` where `players`.`id` = 17027 limit 1 1.06
select * from `players` where `players`.`id` = 17027 limit 1 1.01
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 17027 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 17027 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `players` where `players`.`id` = 17027 limit 1 1.2
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 17027 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.77
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 17027 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.478 and `sessions`.`end_at` <= '2024-01-18 10:39:40' order by `sessions`.`end_at` desc limit 1 49.34
select * from `players` where `players`.`id` = 17027 limit 1 1.27
select * from `players` where `players`.`id` = 17027 limit 1 0.98
select * from `players` where `players`.`id` = 17027 limit 1 0.85
select * from `players` where `players`.`id` = 17027 limit 1 0.84
select * from `players` where `players`.`id` = 17027 limit 1 1.25
select * from `players` where `players`.`id` = 17027 limit 1 1.14
select * from `players` where `players`.`id` = 17027 limit 1 1.25
select * from `players` where `players`.`id` = 17027 limit 1 1.24
select * from `players` where `players`.`id` = 17027 limit 1 1.2
select * from `players` where `players`.`id` = 17027 limit 1 1.13
select * from `players` where `players`.`id` = 17027 limit 1 1.39
select * from `players` where `players`.`id` = 17027 limit 1 1.34
select * from `players` where `players`.`id` = 17027 limit 1 1.33
select * from `players` where `players`.`id` = 17027 limit 1 1.31
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 17027 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 17027 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `players` where `players`.`id` = 17027 limit 1 1.17
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.21
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 17027 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.81
select * from `players` where `players`.`id` = 17013 limit 1 1.23
select * from `players` where `players`.`id` = 17013 limit 1 1.35
select * from `players` where `players`.`id` = 17013 limit 1 1.18
select * from `players` where `players`.`id` = 17013 limit 1 1
select * from `players` where `players`.`id` = 17013 limit 1 1.08
select * from `players` where `players`.`id` = 17013 limit 1 1.03
select * from `players` where `players`.`id` = 17013 limit 1 1.14
select * from `players` where `players`.`id` = 17013 limit 1 0.87
select * from `players` where `players`.`id` = 17013 limit 1 0.83
select * from `players` where `players`.`id` = 17013 limit 1 0.96
select * from `players` where `players`.`id` = 17013 limit 1 0.84
select * from `players` where `players`.`id` = 17013 limit 1 0.84
select * from `players` where `players`.`id` = 17013 limit 1 0.82
select * from `players` where `players`.`id` = 17013 limit 1 0.88
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.88
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 17013 limit 1 0.62
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 17013 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.62
select * from `players` where `players`.`id` = 17013 limit 1 0.86
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.98
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 17013 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `players` where `players`.`id` = 17013 limit 1 0.9
select * from `players` where `players`.`id` = 17013 limit 1 0.89
select * from `players` where `players`.`id` = 17013 limit 1 1.03
select * from `players` where `players`.`id` = 17013 limit 1 1.04
select * from `players` where `players`.`id` = 17013 limit 1 0.97
select * from `players` where `players`.`id` = 17013 limit 1 0.97
select * from `players` where `players`.`id` = 17013 limit 1 1.01
select * from `players` where `players`.`id` = 17013 limit 1 1.12
select * from `players` where `players`.`id` = 17013 limit 1 1.04
select * from `players` where `players`.`id` = 17013 limit 1 1.03
select * from `players` where `players`.`id` = 17013 limit 1 1.07
select * from `players` where `players`.`id` = 17013 limit 1 1.08
select * from `players` where `players`.`id` = 17013 limit 1 1.02
select * from `players` where `players`.`id` = 17013 limit 1 0.99
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 17013 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 17013 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `players` where `players`.`id` = 17013 limit 1 1.19
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 17013 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.7
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 17013 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.217 and `sessions`.`end_at` <= '2024-01-18 10:39:40' order by `sessions`.`end_at` desc limit 1 47.16
select * from `players` where `players`.`id` = 17013 limit 1 0.9
select * from `players` where `players`.`id` = 17013 limit 1 0.88
select * from `players` where `players`.`id` = 17013 limit 1 0.95
select * from `players` where `players`.`id` = 17013 limit 1 1.18
select * from `players` where `players`.`id` = 17013 limit 1 1.18
select * from `players` where `players`.`id` = 17013 limit 1 1.24
select * from `players` where `players`.`id` = 17013 limit 1 1.07
select * from `players` where `players`.`id` = 17013 limit 1 1.14
select * from `players` where `players`.`id` = 17013 limit 1 1.39
select * from `players` where `players`.`id` = 17013 limit 1 1.18
select * from `players` where `players`.`id` = 17013 limit 1 1.18
select * from `players` where `players`.`id` = 17013 limit 1 1.28
select * from `players` where `players`.`id` = 17013 limit 1 1.26
select * from `players` where `players`.`id` = 17013 limit 1 1.3
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 17013 limit 1 0.84
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.86
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 17013 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.9
select * from `players` where `players`.`id` = 17013 limit 1 1.32
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.19
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 17013 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 17005 limit 1 0.99
select * from `players` where `players`.`id` = 17005 limit 1 1.14
select * from `players` where `players`.`id` = 17005 limit 1 1
select * from `players` where `players`.`id` = 17005 limit 1 1.1
select * from `players` where `players`.`id` = 17005 limit 1 1.15
select * from `players` where `players`.`id` = 17005 limit 1 0.89
select * from `players` where `players`.`id` = 17005 limit 1 1.27
select * from `players` where `players`.`id` = 17005 limit 1 0.99
select * from `players` where `players`.`id` = 17005 limit 1 0.93
select * from `players` where `players`.`id` = 17005 limit 1 1.06
select * from `players` where `players`.`id` = 17005 limit 1 1.02
select * from `players` where `players`.`id` = 17005 limit 1 0.93
select * from `players` where `players`.`id` = 17005 limit 1 1.17
select * from `players` where `players`.`id` = 17005 limit 1 1.02
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 17005 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.89
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 17005 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `players` where `players`.`id` = 17005 limit 1 0.91
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.16
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 17005 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `players` where `players`.`id` = 17005 limit 1 1.55
select * from `players` where `players`.`id` = 17005 limit 1 1.85
select * from `players` where `players`.`id` = 17005 limit 1 1.01
select * from `players` where `players`.`id` = 17005 limit 1 0.93
select * from `players` where `players`.`id` = 17005 limit 1 0.88
select * from `players` where `players`.`id` = 17005 limit 1 2.08
select * from `players` where `players`.`id` = 17005 limit 1 1.08
select * from `players` where `players`.`id` = 17005 limit 1 0.94
select * from `players` where `players`.`id` = 17005 limit 1 0.94
select * from `players` where `players`.`id` = 17005 limit 1 1
select * from `players` where `players`.`id` = 17005 limit 1 1.09
select * from `players` where `players`.`id` = 17005 limit 1 0.82
select * from `players` where `players`.`id` = 17005 limit 1 0.91
select * from `players` where `players`.`id` = 17005 limit 1 1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 17005 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 17005 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `players` where `players`.`id` = 17005 limit 1 1
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.84
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 17005 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.65
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 17005 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.487 and `sessions`.`end_at` <= '2024-01-18 10:39:40' order by `sessions`.`end_at` desc limit 1 42.2
select * from `players` where `players`.`id` = 17005 limit 1 1.06
select * from `players` where `players`.`id` = 17005 limit 1 1.17
select * from `players` where `players`.`id` = 17005 limit 1 0.99
select * from `players` where `players`.`id` = 17005 limit 1 1.08
select * from `players` where `players`.`id` = 17005 limit 1 1.07
select * from `players` where `players`.`id` = 17005 limit 1 1.18
select * from `players` where `players`.`id` = 17005 limit 1 1.19
select * from `players` where `players`.`id` = 17005 limit 1 1.24
select * from `players` where `players`.`id` = 17005 limit 1 1.27
select * from `players` where `players`.`id` = 17005 limit 1 1.19
select * from `players` where `players`.`id` = 17005 limit 1 0.99
select * from `players` where `players`.`id` = 17005 limit 1 1.14
select * from `players` where `players`.`id` = 17005 limit 1 1.08
select * from `players` where `players`.`id` = 17005 limit 1 1.22
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 17005 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 17005 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.81
select * from `players` where `players`.`id` = 17005 limit 1 1.26
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.25
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 17005 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.82
select * from `players` where `players`.`id` = 16999 limit 1 1.21
select * from `players` where `players`.`id` = 16999 limit 1 1.18
select * from `players` where `players`.`id` = 16999 limit 1 1.1
select * from `players` where `players`.`id` = 16999 limit 1 0.94
select * from `players` where `players`.`id` = 16999 limit 1 1.03
select * from `players` where `players`.`id` = 16999 limit 1 0.97
select * from `players` where `players`.`id` = 16999 limit 1 1.03
select * from `players` where `players`.`id` = 16999 limit 1 0.92
select * from `players` where `players`.`id` = 16999 limit 1 0.98
select * from `players` where `players`.`id` = 16999 limit 1 1.15
select * from `players` where `players`.`id` = 16999 limit 1 0.89
select * from `players` where `players`.`id` = 16999 limit 1 0.99
select * from `players` where `players`.`id` = 16999 limit 1 0.98
select * from `players` where `players`.`id` = 16999 limit 1 0.94
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.91
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 16999 limit 1 0.62
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.86
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 16999 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.61
select * from `players` where `players`.`id` = 16999 limit 1 0.94
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.07
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 16999 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.66
select * from `players` where `players`.`id` = 16999 limit 1 1
select * from `players` where `players`.`id` = 16999 limit 1 1.05
select * from `players` where `players`.`id` = 16999 limit 1 1.01
select * from `players` where `players`.`id` = 16999 limit 1 0.97
select * from `players` where `players`.`id` = 16999 limit 1 0.91
select * from `players` where `players`.`id` = 16999 limit 1 1.18
select * from `players` where `players`.`id` = 16999 limit 1 1.02
select * from `players` where `players`.`id` = 16999 limit 1 0.96
select * from `players` where `players`.`id` = 16999 limit 1 0.94
select * from `players` where `players`.`id` = 16999 limit 1 1.11
select * from `players` where `players`.`id` = 16999 limit 1 0.8
select * from `players` where `players`.`id` = 16999 limit 1 1.08
select * from `players` where `players`.`id` = 16999 limit 1 1.08
select * from `players` where `players`.`id` = 16999 limit 1 1.16
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 16999 limit 1 0.83
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 16999 limit 1 0.94
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `players` where `players`.`id` = 16999 limit 1 1.19
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.93
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 16999 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.65
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 16999 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 7.2 and `sessions`.`end_at` <= '2024-01-18 10:39:41' order by `sessions`.`end_at` desc limit 1 21.14
select `date`, `value` from `players_speeds_with_sub` where `player_id` = 16999 and `parameter_id` = '38742' and `value` > 7.2 and `date` <= '2024-01-18' order by `date` desc limit 1 22.05
select * from `players` where `players`.`id` = 16999 limit 1 1.21
select * from `players` where `players`.`id` = 16999 limit 1 1.08
select * from `players` where `players`.`id` = 16999 limit 1 1.22
select * from `players` where `players`.`id` = 16999 limit 1 1.27
select * from `players` where `players`.`id` = 16999 limit 1 1.03
select * from `players` where `players`.`id` = 16999 limit 1 1.16
select * from `players` where `players`.`id` = 16999 limit 1 1.03
select * from `players` where `players`.`id` = 16999 limit 1 1.02
select * from `players` where `players`.`id` = 16999 limit 1 1.73
select * from `players` where `players`.`id` = 16999 limit 1 1.19
select * from `players` where `players`.`id` = 16999 limit 1 1.18
select * from `players` where `players`.`id` = 16999 limit 1 1.28
select * from `players` where `players`.`id` = 16999 limit 1 1.09
select * from `players` where `players`.`id` = 16999 limit 1 0.92
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 16999 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 16999 limit 1 0.62
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `players` where `players`.`id` = 16999 limit 1 1.3
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 16999 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `players` where `players`.`id` = 148665 limit 1 1.03
select * from `players` where `players`.`id` = 148665 limit 1 1.08
select * from `players` where `players`.`id` = 148665 limit 1 1.08
select * from `players` where `players`.`id` = 148665 limit 1 1.27
select * from `players` where `players`.`id` = 148665 limit 1 1.03
select * from `players` where `players`.`id` = 148665 limit 1 1.04
select * from `players` where `players`.`id` = 148665 limit 1 1.13
select * from `players` where `players`.`id` = 148665 limit 1 1.09
select * from `players` where `players`.`id` = 148665 limit 1 1.08
select * from `players` where `players`.`id` = 148665 limit 1 0.99
select * from `players` where `players`.`id` = 148665 limit 1 1.11
select * from `players` where `players`.`id` = 148665 limit 1 1.23
select * from `players` where `players`.`id` = 148665 limit 1 1.01
select * from `players` where `players`.`id` = 148665 limit 1 1.12
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.07
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 148665 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 148665 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 148665 limit 1 1
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.94
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 148665 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 148665 limit 1 1.09
select * from `players` where `players`.`id` = 148665 limit 1 1.13
select * from `players` where `players`.`id` = 148665 limit 1 1.3
select * from `players` where `players`.`id` = 148665 limit 1 1.17
select * from `players` where `players`.`id` = 148665 limit 1 1.09
select * from `players` where `players`.`id` = 148665 limit 1 1.09
select * from `players` where `players`.`id` = 148665 limit 1 1.02
select * from `players` where `players`.`id` = 148665 limit 1 1.14
select * from `players` where `players`.`id` = 148665 limit 1 1.25
select * from `players` where `players`.`id` = 148665 limit 1 1.06
select * from `players` where `players`.`id` = 148665 limit 1 0.99
select * from `players` where `players`.`id` = 148665 limit 1 0.98
select * from `players` where `players`.`id` = 148665 limit 1 1.13
select * from `players` where `players`.`id` = 148665 limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 148665 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 148665 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `players` where `players`.`id` = 148665 limit 1 1.28
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.41
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 148665 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.66
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 148665 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 7.938 and `sessions`.`end_at` <= '2024-01-18 10:39:41' order by `sessions`.`end_at` desc limit 1 57.34
select * from `players` where `players`.`id` = 148665 limit 1 1.24
select * from `players` where `players`.`id` = 148665 limit 1 1.25
select * from `players` where `players`.`id` = 148665 limit 1 1.13
select * from `players` where `players`.`id` = 148665 limit 1 1.18
select * from `players` where `players`.`id` = 148665 limit 1 1.15
select * from `players` where `players`.`id` = 148665 limit 1 1.32
select * from `players` where `players`.`id` = 148665 limit 1 1.09
select * from `players` where `players`.`id` = 148665 limit 1 1.17
select * from `players` where `players`.`id` = 148665 limit 1 1.09
select * from `players` where `players`.`id` = 148665 limit 1 1.07
select * from `players` where `players`.`id` = 148665 limit 1 1.19
select * from `players` where `players`.`id` = 148665 limit 1 1.31
select * from `players` where `players`.`id` = 148665 limit 1 1.45
select * from `players` where `players`.`id` = 148665 limit 1 1.33
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 148665 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 148665 limit 1 0.87
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `players` where `players`.`id` = 148665 limit 1 1.37
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.41
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 148665 limit 1 0.84
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `players` where `players`.`id` = 149051 limit 1 1.43
select * from `players` where `players`.`id` = 149051 limit 1 1.2
select * from `players` where `players`.`id` = 149051 limit 1 1.07
select * from `players` where `players`.`id` = 149051 limit 1 1.06
select * from `players` where `players`.`id` = 149051 limit 1 1.01
select * from `players` where `players`.`id` = 149051 limit 1 1.1
select * from `players` where `players`.`id` = 149051 limit 1 1.14
select * from `players` where `players`.`id` = 149051 limit 1 1.1
select * from `players` where `players`.`id` = 149051 limit 1 1.25
select * from `players` where `players`.`id` = 149051 limit 1 1.16
select * from `players` where `players`.`id` = 149051 limit 1 1.12
select * from `players` where `players`.`id` = 149051 limit 1 1.25
select * from `players` where `players`.`id` = 149051 limit 1 1.13
select * from `players` where `players`.`id` = 149051 limit 1 1.18
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.06
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149051 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149051 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 149051 limit 1 1.02
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.12
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149051 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.83
select * from `players` where `players`.`id` = 149051 limit 1 1.33
select * from `players` where `players`.`id` = 149051 limit 1 1.05
select * from `players` where `players`.`id` = 149051 limit 1 1.25
select * from `players` where `players`.`id` = 149051 limit 1 1.16
select * from `players` where `players`.`id` = 149051 limit 1 1.12
select * from `players` where `players`.`id` = 149051 limit 1 1.27
select * from `players` where `players`.`id` = 149051 limit 1 1.3
select * from `players` where `players`.`id` = 149051 limit 1 1.19
select * from `players` where `players`.`id` = 149051 limit 1 1.22
select * from `players` where `players`.`id` = 149051 limit 1 1.26
select * from `players` where `players`.`id` = 149051 limit 1 1.11
select * from `players` where `players`.`id` = 149051 limit 1 1.03
select * from `players` where `players`.`id` = 149051 limit 1 1.14
select * from `players` where `players`.`id` = 149051 limit 1 1.1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149051 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149051 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.84
select * from `players` where `players`.`id` = 149051 limit 1 1.35
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.25
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149051 limit 1 0.83
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.75
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149051 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.775 and `sessions`.`end_at` <= '2024-01-18 10:39:42' order by `sessions`.`end_at` desc limit 1 31.3
select * from `players` where `players`.`id` = 149051 limit 1 1.18
select * from `players` where `players`.`id` = 149051 limit 1 1.02
select * from `players` where `players`.`id` = 149051 limit 1 1.09
select * from `players` where `players`.`id` = 149051 limit 1 0.9
select * from `players` where `players`.`id` = 149051 limit 1 0.97
select * from `players` where `players`.`id` = 149051 limit 1 1.06
select * from `players` where `players`.`id` = 149051 limit 1 1
select * from `players` where `players`.`id` = 149051 limit 1 1.09
select * from `players` where `players`.`id` = 149051 limit 1 1.12
select * from `players` where `players`.`id` = 149051 limit 1 1
select * from `players` where `players`.`id` = 149051 limit 1 1.15
select * from `players` where `players`.`id` = 149051 limit 1 1.12
select * from `players` where `players`.`id` = 149051 limit 1 0.98
select * from `players` where `players`.`id` = 149051 limit 1 0.94
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149051 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149051 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.83
select * from `players` where `players`.`id` = 149051 limit 1 1.19
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.28
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149051 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.81
select * from `players` where `players`.`id` = 149053 limit 1 1.28
select * from `players` where `players`.`id` = 149053 limit 1 1.26
select * from `players` where `players`.`id` = 149053 limit 1 1.23
select * from `players` where `players`.`id` = 149053 limit 1 0.94
select * from `players` where `players`.`id` = 149053 limit 1 1.19
select * from `players` where `players`.`id` = 149053 limit 1 1.37
select * from `players` where `players`.`id` = 149053 limit 1 1.27
select * from `players` where `players`.`id` = 149053 limit 1 1.25
select * from `players` where `players`.`id` = 149053 limit 1 1
select * from `players` where `players`.`id` = 149053 limit 1 0.99
select * from `players` where `players`.`id` = 149053 limit 1 0.85
select * from `players` where `players`.`id` = 149053 limit 1 0.94
select * from `players` where `players`.`id` = 149053 limit 1 0.93
select * from `players` where `players`.`id` = 149053 limit 1 1.21
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.96
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149053 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149053 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 149053 limit 1 1.03
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.14
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149053 limit 1 1.09
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `players` where `players`.`id` = 149053 limit 1 1.03
select * from `players` where `players`.`id` = 149053 limit 1 1.02
select * from `players` where `players`.`id` = 149053 limit 1 1.37
select * from `players` where `players`.`id` = 149053 limit 1 0.93
select * from `players` where `players`.`id` = 149053 limit 1 1.04
select * from `players` where `players`.`id` = 149053 limit 1 1.35
select * from `players` where `players`.`id` = 149053 limit 1 0.97
select * from `players` where `players`.`id` = 149053 limit 1 1.18
select * from `players` where `players`.`id` = 149053 limit 1 1.26
select * from `players` where `players`.`id` = 149053 limit 1 1.22
select * from `players` where `players`.`id` = 149053 limit 1 1
select * from `players` where `players`.`id` = 149053 limit 1 1.07
select * from `players` where `players`.`id` = 149053 limit 1 1.3
select * from `players` where `players`.`id` = 149053 limit 1 1.17
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149053 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149053 limit 1 0.95
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 149053 limit 1 1.25
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149053 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.67
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149053 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.541 and `sessions`.`end_at` <= '2024-01-18 10:39:42' order by `sessions`.`end_at` desc limit 1 23.05
select * from `players` where `players`.`id` = 149053 limit 1 1.09
select * from `players` where `players`.`id` = 149053 limit 1 1.04
select * from `players` where `players`.`id` = 149053 limit 1 1.01
select * from `players` where `players`.`id` = 149053 limit 1 1.39
select * from `players` where `players`.`id` = 149053 limit 1 0.94
select * from `players` where `players`.`id` = 149053 limit 1 1.03
select * from `players` where `players`.`id` = 149053 limit 1 1.08
select * from `players` where `players`.`id` = 149053 limit 1 1.36
select * from `players` where `players`.`id` = 149053 limit 1 0.97
select * from `players` where `players`.`id` = 149053 limit 1 1.14
select * from `players` where `players`.`id` = 149053 limit 1 1.09
select * from `players` where `players`.`id` = 149053 limit 1 1.04
select * from `players` where `players`.`id` = 149053 limit 1 1.03
select * from `players` where `players`.`id` = 149053 limit 1 1.01
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149053 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149053 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.73
select * from `players` where `players`.`id` = 149053 limit 1 1.57
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.04
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149053 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.83
select * from `players` where `players`.`id` = 149632 limit 1 1.09
select * from `players` where `players`.`id` = 149632 limit 1 1.08
select * from `players` where `players`.`id` = 149632 limit 1 1.18
select * from `players` where `players`.`id` = 149632 limit 1 1.14
select * from `players` where `players`.`id` = 149632 limit 1 0.98
select * from `players` where `players`.`id` = 149632 limit 1 1.08
select * from `players` where `players`.`id` = 149632 limit 1 1.02
select * from `players` where `players`.`id` = 149632 limit 1 0.98
select * from `players` where `players`.`id` = 149632 limit 1 1.02
select * from `players` where `players`.`id` = 149632 limit 1 1.07
select * from `players` where `players`.`id` = 149632 limit 1 1.06
select * from `players` where `players`.`id` = 149632 limit 1 1
select * from `players` where `players`.`id` = 149632 limit 1 0.99
select * from `players` where `players`.`id` = 149632 limit 1 1.01
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.11
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149632 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149632 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.67
select * from `players` where `players`.`id` = 149632 limit 1 1.71
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.07
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149632 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `players` where `players`.`id` = 149632 limit 1 1.14
select * from `players` where `players`.`id` = 149632 limit 1 1.26
select * from `players` where `players`.`id` = 149632 limit 1 1.2
select * from `players` where `players`.`id` = 149632 limit 1 1.13
select * from `players` where `players`.`id` = 149632 limit 1 1.12
select * from `players` where `players`.`id` = 149632 limit 1 1.06
select * from `players` where `players`.`id` = 149632 limit 1 1.04
select * from `players` where `players`.`id` = 149632 limit 1 1.33
select * from `players` where `players`.`id` = 149632 limit 1 1.12
select * from `players` where `players`.`id` = 149632 limit 1 1.11
select * from `players` where `players`.`id` = 149632 limit 1 1.13
select * from `players` where `players`.`id` = 149632 limit 1 1.21
select * from `players` where `players`.`id` = 149632 limit 1 1.06
select * from `players` where `players`.`id` = 149632 limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149632 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149632 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `players` where `players`.`id` = 149632 limit 1 1.14
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.49
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149632 limit 1 0.89
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.89
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149632 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 7.929 and `sessions`.`end_at` <= '2024-01-18 10:39:42' order by `sessions`.`end_at` desc limit 1 73.34
select * from `players` where `players`.`id` = 149632 limit 1 1.03
select * from `players` where `players`.`id` = 149632 limit 1 0.95
select * from `players` where `players`.`id` = 149632 limit 1 0.86
select * from `players` where `players`.`id` = 149632 limit 1 0.82
select * from `players` where `players`.`id` = 149632 limit 1 0.95
select * from `players` where `players`.`id` = 149632 limit 1 0.87
select * from `players` where `players`.`id` = 149632 limit 1 0.94
select * from `players` where `players`.`id` = 149632 limit 1 0.84
select * from `players` where `players`.`id` = 149632 limit 1 0.9
select * from `players` where `players`.`id` = 149632 limit 1 0.82
select * from `players` where `players`.`id` = 149632 limit 1 0.88
select * from `players` where `players`.`id` = 149632 limit 1 0.9
select * from `players` where `players`.`id` = 149632 limit 1 1
select * from `players` where `players`.`id` = 149632 limit 1 0.95
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149632 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149632 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `players` where `players`.`id` = 149632 limit 1 0.87
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.97
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149632 limit 1 0.86
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `players` where `players`.`id` = 149726 limit 1 1.04
select * from `players` where `players`.`id` = 149726 limit 1 1.01
select * from `players` where `players`.`id` = 149726 limit 1 1.21
select * from `players` where `players`.`id` = 149726 limit 1 1.07
select * from `players` where `players`.`id` = 149726 limit 1 1.53
select * from `players` where `players`.`id` = 149726 limit 1 1.03
select * from `players` where `players`.`id` = 149726 limit 1 0.97
select * from `players` where `players`.`id` = 149726 limit 1 1
select * from `players` where `players`.`id` = 149726 limit 1 0.87
select * from `players` where `players`.`id` = 149726 limit 1 0.97
select * from `players` where `players`.`id` = 149726 limit 1 1.1
select * from `players` where `players`.`id` = 149726 limit 1 1.03
select * from `players` where `players`.`id` = 149726 limit 1 0.95
select * from `players` where `players`.`id` = 149726 limit 1 1.42
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.15
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149726 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149726 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 149726 limit 1 1.04
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.18
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149726 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.68
select * from `players` where `players`.`id` = 149726 limit 1 1.12
select * from `players` where `players`.`id` = 149726 limit 1 1.13
select * from `players` where `players`.`id` = 149726 limit 1 1.06
select * from `players` where `players`.`id` = 149726 limit 1 1.2
select * from `players` where `players`.`id` = 149726 limit 1 1.02
select * from `players` where `players`.`id` = 149726 limit 1 1.18
select * from `players` where `players`.`id` = 149726 limit 1 0.91
select * from `players` where `players`.`id` = 149726 limit 1 1.05
select * from `players` where `players`.`id` = 149726 limit 1 1.01
select * from `players` where `players`.`id` = 149726 limit 1 1
select * from `players` where `players`.`id` = 149726 limit 1 0.98
select * from `players` where `players`.`id` = 149726 limit 1 1.01
select * from `players` where `players`.`id` = 149726 limit 1 1
select * from `players` where `players`.`id` = 149726 limit 1 1.02
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149726 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149726 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `players` where `players`.`id` = 149726 limit 1 1.13
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.06
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149726 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.64
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149726 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.271 and `sessions`.`end_at` <= '2024-01-18 10:39:43' order by `sessions`.`end_at` desc limit 1 62.96
select * from `players` where `players`.`id` = 149726 limit 1 1.12
select * from `players` where `players`.`id` = 149726 limit 1 1.22
select * from `players` where `players`.`id` = 149726 limit 1 1.23
select * from `players` where `players`.`id` = 149726 limit 1 1.15
select * from `players` where `players`.`id` = 149726 limit 1 1.14
select * from `players` where `players`.`id` = 149726 limit 1 1.07
select * from `players` where `players`.`id` = 149726 limit 1 1.16
select * from `players` where `players`.`id` = 149726 limit 1 1.21
select * from `players` where `players`.`id` = 149726 limit 1 0.98
select * from `players` where `players`.`id` = 149726 limit 1 1.41
select * from `players` where `players`.`id` = 149726 limit 1 1.22
select * from `players` where `players`.`id` = 149726 limit 1 1.24
select * from `players` where `players`.`id` = 149726 limit 1 1.09
select * from `players` where `players`.`id` = 149726 limit 1 1.33
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149726 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149726 limit 1 0.84
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.84
select * from `players` where `players`.`id` = 149726 limit 1 1.43
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.37
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149726 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.81
select * from `players` where `players`.`id` = 149735 limit 1 1.12
select * from `players` where `players`.`id` = 149735 limit 1 1.31
select * from `players` where `players`.`id` = 149735 limit 1 1.19
select * from `players` where `players`.`id` = 149735 limit 1 1.2
select * from `players` where `players`.`id` = 149735 limit 1 1
select * from `players` where `players`.`id` = 149735 limit 1 1.13
select * from `players` where `players`.`id` = 149735 limit 1 1.06
select * from `players` where `players`.`id` = 149735 limit 1 1.04
select * from `players` where `players`.`id` = 149735 limit 1 1.05
select * from `players` where `players`.`id` = 149735 limit 1 1.46
select * from `players` where `players`.`id` = 149735 limit 1 1.11
select * from `players` where `players`.`id` = 149735 limit 1 1.11
select * from `players` where `players`.`id` = 149735 limit 1 1.39
select * from `players` where `players`.`id` = 149735 limit 1 1
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.91
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149735 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149735 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `players` where `players`.`id` = 149735 limit 1 1.06
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149735 limit 1 0.87
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.66
select * from `players` where `players`.`id` = 149735 limit 1 0.95
select * from `players` where `players`.`id` = 149735 limit 1 0.91
select * from `players` where `players`.`id` = 149735 limit 1 1.03
select * from `players` where `players`.`id` = 149735 limit 1 1.64
select * from `players` where `players`.`id` = 149735 limit 1 0.85
select * from `players` where `players`.`id` = 149735 limit 1 0.88
select * from `players` where `players`.`id` = 149735 limit 1 0.87
select * from `players` where `players`.`id` = 149735 limit 1 1.07
select * from `players` where `players`.`id` = 149735 limit 1 0.79
select * from `players` where `players`.`id` = 149735 limit 1 0.9
select * from `players` where `players`.`id` = 149735 limit 1 0.8
select * from `players` where `players`.`id` = 149735 limit 1 0.84
select * from `players` where `players`.`id` = 149735 limit 1 1.06
select * from `players` where `players`.`id` = 149735 limit 1 0.84
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149735 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149735 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.66
select * from `players` where `players`.`id` = 149735 limit 1 0.9
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.97
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149735 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.64
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149735 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.982 and `sessions`.`end_at` <= '2024-01-18 10:39:43' order by `sessions`.`end_at` desc limit 1 42.8
select * from `players` where `players`.`id` = 149735 limit 1 1.04
select * from `players` where `players`.`id` = 149735 limit 1 1.1
select * from `players` where `players`.`id` = 149735 limit 1 1.22
select * from `players` where `players`.`id` = 149735 limit 1 1.29
select * from `players` where `players`.`id` = 149735 limit 1 1.25
select * from `players` where `players`.`id` = 149735 limit 1 1.21
select * from `players` where `players`.`id` = 149735 limit 1 1.18
select * from `players` where `players`.`id` = 149735 limit 1 1.24
select * from `players` where `players`.`id` = 149735 limit 1 1.05
select * from `players` where `players`.`id` = 149735 limit 1 1.09
select * from `players` where `players`.`id` = 149735 limit 1 1.15
select * from `players` where `players`.`id` = 149735 limit 1 1.07
select * from `players` where `players`.`id` = 149735 limit 1 1.06
select * from `players` where `players`.`id` = 149735 limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149735 limit 1 0.87
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.83
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149735 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.83
select * from `players` where `players`.`id` = 149735 limit 1 1.28
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.21
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149735 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `players` where `players`.`id` = 149877 limit 1 1.2
select * from `players` where `players`.`id` = 149877 limit 1 1.17
select * from `players` where `players`.`id` = 149877 limit 1 1.26
select * from `players` where `players`.`id` = 149877 limit 1 1.08
select * from `players` where `players`.`id` = 149877 limit 1 1.1
select * from `players` where `players`.`id` = 149877 limit 1 1.05
select * from `players` where `players`.`id` = 149877 limit 1 1.18
select * from `players` where `players`.`id` = 149877 limit 1 1.21
select * from `players` where `players`.`id` = 149877 limit 1 0.99
select * from `players` where `players`.`id` = 149877 limit 1 1.05
select * from `players` where `players`.`id` = 149877 limit 1 1.13
select * from `players` where `players`.`id` = 149877 limit 1 1.19
select * from `players` where `players`.`id` = 149877 limit 1 1.03
select * from `players` where `players`.`id` = 149877 limit 1 1.13
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149877 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149877 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `players` where `players`.`id` = 149877 limit 1 1.11
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.16
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149877 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.73
select * from `players` where `players`.`id` = 149877 limit 1 1.28
select * from `players` where `players`.`id` = 149877 limit 1 1.28
select * from `players` where `players`.`id` = 149877 limit 1 1.19
select * from `players` where `players`.`id` = 149877 limit 1 1.25
select * from `players` where `players`.`id` = 149877 limit 1 1.22
select * from `players` where `players`.`id` = 149877 limit 1 1.18
select * from `players` where `players`.`id` = 149877 limit 1 1.14
select * from `players` where `players`.`id` = 149877 limit 1 1.19
select * from `players` where `players`.`id` = 149877 limit 1 1.25
select * from `players` where `players`.`id` = 149877 limit 1 1.22
select * from `players` where `players`.`id` = 149877 limit 1 1.08
select * from `players` where `players`.`id` = 149877 limit 1 1.16
select * from `players` where `players`.`id` = 149877 limit 1 1
select * from `players` where `players`.`id` = 149877 limit 1 1.03
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149877 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.83
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149877 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `players` where `players`.`id` = 149877 limit 1 1.47
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.33
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149877 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.81
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149877 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.316 and `sessions`.`end_at` <= '2024-01-18 10:39:44' order by `sessions`.`end_at` desc limit 1 49.22
select * from `players` where `players`.`id` = 149877 limit 1 1.07
select * from `players` where `players`.`id` = 149877 limit 1 1.15
select * from `players` where `players`.`id` = 149877 limit 1 1.21
select * from `players` where `players`.`id` = 149877 limit 1 1.02
select * from `players` where `players`.`id` = 149877 limit 1 0.91
select * from `players` where `players`.`id` = 149877 limit 1 0.99
select * from `players` where `players`.`id` = 149877 limit 1 1.09
select * from `players` where `players`.`id` = 149877 limit 1 1.15
select * from `players` where `players`.`id` = 149877 limit 1 1.15
select * from `players` where `players`.`id` = 149877 limit 1 1.12
select * from `players` where `players`.`id` = 149877 limit 1 1.1
select * from `players` where `players`.`id` = 149877 limit 1 1.07
select * from `players` where `players`.`id` = 149877 limit 1 1.22
select * from `players` where `players`.`id` = 149877 limit 1 1.04
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149877 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149877 limit 1 0.86
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 149877 limit 1 1.24
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.26
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149877 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `players` where `players`.`id` = 149933 limit 1 1.08
select * from `players` where `players`.`id` = 149933 limit 1 1.01
select * from `players` where `players`.`id` = 149933 limit 1 1.06
select * from `players` where `players`.`id` = 149933 limit 1 1.14
select * from `players` where `players`.`id` = 149933 limit 1 1.15
select * from `players` where `players`.`id` = 149933 limit 1 1.27
select * from `players` where `players`.`id` = 149933 limit 1 1.42
select * from `players` where `players`.`id` = 149933 limit 1 1.27
select * from `players` where `players`.`id` = 149933 limit 1 1.06
select * from `players` where `players`.`id` = 149933 limit 1 0.99
select * from `players` where `players`.`id` = 149933 limit 1 1.21
select * from `players` where `players`.`id` = 149933 limit 1 1.1
select * from `players` where `players`.`id` = 149933 limit 1 1.11
select * from `players` where `players`.`id` = 149933 limit 1 1.21
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.09
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149933 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149933 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `players` where `players`.`id` = 149933 limit 1 1.11
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.07
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149933 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `players` where `players`.`id` = 149933 limit 1 1.17
select * from `players` where `players`.`id` = 149933 limit 1 1.03
select * from `players` where `players`.`id` = 149933 limit 1 0.94
select * from `players` where `players`.`id` = 149933 limit 1 1.13
select * from `players` where `players`.`id` = 149933 limit 1 1.37
select * from `players` where `players`.`id` = 149933 limit 1 1.08
select * from `players` where `players`.`id` = 149933 limit 1 1.1
select * from `players` where `players`.`id` = 149933 limit 1 1.06
select * from `players` where `players`.`id` = 149933 limit 1 1.18
select * from `players` where `players`.`id` = 149933 limit 1 1.25
select * from `players` where `players`.`id` = 149933 limit 1 1.18
select * from `players` where `players`.`id` = 149933 limit 1 1.33
select * from `players` where `players`.`id` = 149933 limit 1 1.15
select * from `players` where `players`.`id` = 149933 limit 1 1.35
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149933 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149933 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.81
select * from `players` where `players`.`id` = 149933 limit 1 1.25
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.19
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149933 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.84
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149933 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 0 and `sessions`.`end_at` <= '2024-01-18 10:39:44' order by `sessions`.`end_at` desc limit 1 21.65
select `date`, `value` from `players_speeds_with_sub` where `player_id` = 149933 and `parameter_id` = '38742' and `value` > 0 and `date` <= '2024-01-18' order by `date` desc limit 1 20.81
select * from `players` where `players`.`id` = 149933 limit 1 1.21
select * from `players` where `players`.`id` = 149933 limit 1 1.2
select * from `players` where `players`.`id` = 149933 limit 1 1.15
select * from `players` where `players`.`id` = 149933 limit 1 1.21
select * from `players` where `players`.`id` = 149933 limit 1 1.19
select * from `players` where `players`.`id` = 149933 limit 1 1.22
select * from `players` where `players`.`id` = 149933 limit 1 1.3
select * from `players` where `players`.`id` = 149933 limit 1 1.41
select * from `players` where `players`.`id` = 149933 limit 1 1.27
select * from `players` where `players`.`id` = 149933 limit 1 2.11
select * from `players` where `players`.`id` = 149933 limit 1 1.23
select * from `players` where `players`.`id` = 149933 limit 1 1.2
select * from `players` where `players`.`id` = 149933 limit 1 1.38
select * from `players` where `players`.`id` = 149933 limit 1 1.26
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149933 limit 1 0.85
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 1.11
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149933 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `players` where `players`.`id` = 149933 limit 1 1.06
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.95
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149933 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `players` where `players`.`id` = 149976 limit 1 0.99
select * from `players` where `players`.`id` = 149976 limit 1 1.11
select * from `players` where `players`.`id` = 149976 limit 1 0.93
select * from `players` where `players`.`id` = 149976 limit 1 0.91
select * from `players` where `players`.`id` = 149976 limit 1 0.92
select * from `players` where `players`.`id` = 149976 limit 1 1
select * from `players` where `players`.`id` = 149976 limit 1 0.92
select * from `players` where `players`.`id` = 149976 limit 1 0.93
select * from `players` where `players`.`id` = 149976 limit 1 1.02
select * from `players` where `players`.`id` = 149976 limit 1 0.87
select * from `players` where `players`.`id` = 149976 limit 1 0.92
select * from `players` where `players`.`id` = 149976 limit 1 0.98
select * from `players` where `players`.`id` = 149976 limit 1 1.08
select * from `players` where `players`.`id` = 149976 limit 1 0.91
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149976 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149976 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `players` where `players`.`id` = 149976 limit 1 0.93
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.94
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149976 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `players` where `players`.`id` = 149976 limit 1 0.96
select * from `players` where `players`.`id` = 149976 limit 1 0.99
select * from `players` where `players`.`id` = 149976 limit 1 0.97
select * from `players` where `players`.`id` = 149976 limit 1 1.08
select * from `players` where `players`.`id` = 149976 limit 1 1.11
select * from `players` where `players`.`id` = 149976 limit 1 1.01
select * from `players` where `players`.`id` = 149976 limit 1 0.94
select * from `players` where `players`.`id` = 149976 limit 1 0.99
select * from `players` where `players`.`id` = 149976 limit 1 1.18
select * from `players` where `players`.`id` = 149976 limit 1 1.1
select * from `players` where `players`.`id` = 149976 limit 1 1.08
select * from `players` where `players`.`id` = 149976 limit 1 1.05
select * from `players` where `players`.`id` = 149976 limit 1 1.06
select * from `players` where `players`.`id` = 149976 limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149976 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149976 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 149976 limit 1 1.25
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149976 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.77
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149976 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.847 and `sessions`.`end_at` <= '2024-01-18 10:39:44' order by `sessions`.`end_at` desc limit 1 33.47
select * from `players` where `players`.`id` = 149976 limit 1 0.97
select * from `players` where `players`.`id` = 149976 limit 1 0.95
select * from `players` where `players`.`id` = 149976 limit 1 1.04
select * from `players` where `players`.`id` = 149976 limit 1 0.92
select * from `players` where `players`.`id` = 149976 limit 1 1.08
select * from `players` where `players`.`id` = 149976 limit 1 1
select * from `players` where `players`.`id` = 149976 limit 1 1.03
select * from `players` where `players`.`id` = 149976 limit 1 1.02
select * from `players` where `players`.`id` = 149976 limit 1 1.03
select * from `players` where `players`.`id` = 149976 limit 1 1.11
select * from `players` where `players`.`id` = 149976 limit 1 0.96
select * from `players` where `players`.`id` = 149976 limit 1 0.9
select * from `players` where `players`.`id` = 149976 limit 1 0.96
select * from `players` where `players`.`id` = 149976 limit 1 0.93
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149976 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149976 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `players` where `players`.`id` = 149976 limit 1 1.25
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.94
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149976 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `players` where `players`.`id` = 149977 limit 1 1.08
select * from `players` where `players`.`id` = 149977 limit 1 1.07
select * from `players` where `players`.`id` = 149977 limit 1 1.08
select * from `players` where `players`.`id` = 149977 limit 1 1.15
select * from `players` where `players`.`id` = 149977 limit 1 1.03
select * from `players` where `players`.`id` = 149977 limit 1 0.97
select * from `players` where `players`.`id` = 149977 limit 1 0.94
select * from `players` where `players`.`id` = 149977 limit 1 0.95
select * from `players` where `players`.`id` = 149977 limit 1 1
select * from `players` where `players`.`id` = 149977 limit 1 0.98
select * from `players` where `players`.`id` = 149977 limit 1 1.07
select * from `players` where `players`.`id` = 149977 limit 1 0.97
select * from `players` where `players`.`id` = 149977 limit 1 0.9
select * from `players` where `players`.`id` = 149977 limit 1 0.87
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.06
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149977 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149977 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.62
select * from `players` where `players`.`id` = 149977 limit 1 1.19
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.44
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149977 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.62
select * from `players` where `players`.`id` = 149977 limit 1 1.12
select * from `players` where `players`.`id` = 149977 limit 1 0.87
select * from `players` where `players`.`id` = 149977 limit 1 0.96
select * from `players` where `players`.`id` = 149977 limit 1 0.85
select * from `players` where `players`.`id` = 149977 limit 1 0.84
select * from `players` where `players`.`id` = 149977 limit 1 0.85
select * from `players` where `players`.`id` = 149977 limit 1 0.87
select * from `players` where `players`.`id` = 149977 limit 1 0.92
select * from `players` where `players`.`id` = 149977 limit 1 0.85
select * from `players` where `players`.`id` = 149977 limit 1 0.8
select * from `players` where `players`.`id` = 149977 limit 1 0.81
select * from `players` where `players`.`id` = 149977 limit 1 0.85
select * from `players` where `players`.`id` = 149977 limit 1 0.79
select * from `players` where `players`.`id` = 149977 limit 1 0.85
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149977 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149977 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `players` where `players`.`id` = 149977 limit 1 1.14
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.94
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149977 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.67
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149977 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.379 and `sessions`.`end_at` <= '2024-01-18 10:39:45' order by `sessions`.`end_at` desc limit 1 39.96
select * from `players` where `players`.`id` = 149977 limit 1 0.99
select * from `players` where `players`.`id` = 149977 limit 1 0.97
select * from `players` where `players`.`id` = 149977 limit 1 1.11
select * from `players` where `players`.`id` = 149977 limit 1 1.22
select * from `players` where `players`.`id` = 149977 limit 1 1.24
select * from `players` where `players`.`id` = 149977 limit 1 1.18
select * from `players` where `players`.`id` = 149977 limit 1 1.18
select * from `players` where `players`.`id` = 149977 limit 1 1.18
select * from `players` where `players`.`id` = 149977 limit 1 1.14
select * from `players` where `players`.`id` = 149977 limit 1 1.16
select * from `players` where `players`.`id` = 149977 limit 1 1.22
select * from `players` where `players`.`id` = 149977 limit 1 1.19
select * from `players` where `players`.`id` = 149977 limit 1 1.29
select * from `players` where `players`.`id` = 149977 limit 1 1.28
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149977 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149977 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `players` where `players`.`id` = 149977 limit 1 1.2
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.2
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149977 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `players` where `players`.`id` = 149982 limit 1 1.32
select * from `players` where `players`.`id` = 149982 limit 1 1.01
select * from `players` where `players`.`id` = 149982 limit 1 1.03
select * from `players` where `players`.`id` = 149982 limit 1 1.08
select * from `players` where `players`.`id` = 149982 limit 1 1.03
select * from `players` where `players`.`id` = 149982 limit 1 0.97
select * from `players` where `players`.`id` = 149982 limit 1 1.05
select * from `players` where `players`.`id` = 149982 limit 1 1.01
select * from `players` where `players`.`id` = 149982 limit 1 0.98
select * from `players` where `players`.`id` = 149982 limit 1 0.99
select * from `players` where `players`.`id` = 149982 limit 1 1.28
select * from `players` where `players`.`id` = 149982 limit 1 1.02
select * from `players` where `players`.`id` = 149982 limit 1 0.85
select * from `players` where `players`.`id` = 149982 limit 1 1.07
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.04
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149982 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149982 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.62
select * from `players` where `players`.`id` = 149982 limit 1 0.88
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.27
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149982 limit 1 0.91
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.84
select * from `players` where `players`.`id` = 149982 limit 1 1.34
select * from `players` where `players`.`id` = 149982 limit 1 1.33
select * from `players` where `players`.`id` = 149982 limit 1 1.28
select * from `players` where `players`.`id` = 149982 limit 1 1.22
select * from `players` where `players`.`id` = 149982 limit 1 1.22
select * from `players` where `players`.`id` = 149982 limit 1 1.2
select * from `players` where `players`.`id` = 149982 limit 1 1.15
select * from `players` where `players`.`id` = 149982 limit 1 1.17
select * from `players` where `players`.`id` = 149982 limit 1 1.31
select * from `players` where `players`.`id` = 149982 limit 1 1.09
select * from `players` where `players`.`id` = 149982 limit 1 1.12
select * from `players` where `players`.`id` = 149982 limit 1 1.07
select * from `players` where `players`.`id` = 149982 limit 1 1.4
select * from `players` where `players`.`id` = 149982 limit 1 1.17
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149982 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149982 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `players` where `players`.`id` = 149982 limit 1 1.22
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.22
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149982 limit 1 0.89
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.7
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149982 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.37 and `sessions`.`end_at` <= '2024-01-18 10:39:45' order by `sessions`.`end_at` desc limit 1 38.13
select * from `players` where `players`.`id` = 149982 limit 1 1.05
select * from `players` where `players`.`id` = 149982 limit 1 1.06
select * from `players` where `players`.`id` = 149982 limit 1 1.11
select * from `players` where `players`.`id` = 149982 limit 1 1.2
select * from `players` where `players`.`id` = 149982 limit 1 1.18
select * from `players` where `players`.`id` = 149982 limit 1 1.26
select * from `players` where `players`.`id` = 149982 limit 1 1.15
select * from `players` where `players`.`id` = 149982 limit 1 1.27
select * from `players` where `players`.`id` = 149982 limit 1 1.03
select * from `players` where `players`.`id` = 149982 limit 1 1.05
select * from `players` where `players`.`id` = 149982 limit 1 1.13
select * from `players` where `players`.`id` = 149982 limit 1 1.12
select * from `players` where `players`.`id` = 149982 limit 1 1.18
select * from `players` where `players`.`id` = 149982 limit 1 1.18
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149982 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149982 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `players` where `players`.`id` = 149982 limit 1 1.12
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.16
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149982 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 149983 limit 1 1.15
select * from `players` where `players`.`id` = 149983 limit 1 1.18
select * from `players` where `players`.`id` = 149983 limit 1 1.28
select * from `players` where `players`.`id` = 149983 limit 1 1.16
select * from `players` where `players`.`id` = 149983 limit 1 1.04
select * from `players` where `players`.`id` = 149983 limit 1 1.03
select * from `players` where `players`.`id` = 149983 limit 1 1.04
select * from `players` where `players`.`id` = 149983 limit 1 0.99
select * from `players` where `players`.`id` = 149983 limit 1 1.07
select * from `players` where `players`.`id` = 149983 limit 1 1.1
select * from `players` where `players`.`id` = 149983 limit 1 1.14
select * from `players` where `players`.`id` = 149983 limit 1 1.19
select * from `players` where `players`.`id` = 149983 limit 1 1.01
select * from `players` where `players`.`id` = 149983 limit 1 1.02
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149983 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149983 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `players` where `players`.`id` = 149983 limit 1 0.97
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.11
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 149983 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 149983 limit 1 1.23
select * from `players` where `players`.`id` = 149983 limit 1 1.56
select * from `players` where `players`.`id` = 149983 limit 1 1.19
select * from `players` where `players`.`id` = 149983 limit 1 1.17
select * from `players` where `players`.`id` = 149983 limit 1 1.2
select * from `players` where `players`.`id` = 149983 limit 1 1.25
select * from `players` where `players`.`id` = 149983 limit 1 1.21
select * from `players` where `players`.`id` = 149983 limit 1 1.15
select * from `players` where `players`.`id` = 149983 limit 1 1.15
select * from `players` where `players`.`id` = 149983 limit 1 1.25
select * from `players` where `players`.`id` = 149983 limit 1 1.2
select * from `players` where `players`.`id` = 149983 limit 1 1.26
select * from `players` where `players`.`id` = 149983 limit 1 1.24
select * from `players` where `players`.`id` = 149983 limit 1 1.27
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149983 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149983 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 149983 limit 1 1.22
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.16
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 149983 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.79
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 149983 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.55 and `sessions`.`end_at` <= '2024-01-18 10:39:45' order by `sessions`.`end_at` desc limit 1 31.64
select * from `players` where `players`.`id` = 149983 limit 1 1.05
select * from `players` where `players`.`id` = 149983 limit 1 1.06
select * from `players` where `players`.`id` = 149983 limit 1 1.07
select * from `players` where `players`.`id` = 149983 limit 1 1.06
select * from `players` where `players`.`id` = 149983 limit 1 1.06
select * from `players` where `players`.`id` = 149983 limit 1 1.06
select * from `players` where `players`.`id` = 149983 limit 1 1.07
select * from `players` where `players`.`id` = 149983 limit 1 1.03
select * from `players` where `players`.`id` = 149983 limit 1 1.23
select * from `players` where `players`.`id` = 149983 limit 1 1.18
select * from `players` where `players`.`id` = 149983 limit 1 1.14
select * from `players` where `players`.`id` = 149983 limit 1 1.06
select * from `players` where `players`.`id` = 149983 limit 1 1.14
select * from `players` where `players`.`id` = 149983 limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149983 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149983 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.93
select * from `players` where `players`.`id` = 149983 limit 1 1.14
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 149983 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 151652 limit 1 1.09
select * from `players` where `players`.`id` = 151652 limit 1 0.92
select * from `players` where `players`.`id` = 151652 limit 1 0.89
select * from `players` where `players`.`id` = 151652 limit 1 1
select * from `players` where `players`.`id` = 151652 limit 1 0.91
select * from `players` where `players`.`id` = 151652 limit 1 1.15
select * from `players` where `players`.`id` = 151652 limit 1 0.97
select * from `players` where `players`.`id` = 151652 limit 1 1.04
select * from `players` where `players`.`id` = 151652 limit 1 0.96
select * from `players` where `players`.`id` = 151652 limit 1 0.98
select * from `players` where `players`.`id` = 151652 limit 1 0.94
select * from `players` where `players`.`id` = 151652 limit 1 0.91
select * from `players` where `players`.`id` = 151652 limit 1 0.94
select * from `players` where `players`.`id` = 151652 limit 1 1.07
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151652 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151652 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `players` where `players`.`id` = 151652 limit 1 0.96
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.98
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151652 limit 1 0.62
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.61
select * from `players` where `players`.`id` = 151652 limit 1 0.98
select * from `players` where `players`.`id` = 151652 limit 1 1
select * from `players` where `players`.`id` = 151652 limit 1 1.17
select * from `players` where `players`.`id` = 151652 limit 1 1.27
select * from `players` where `players`.`id` = 151652 limit 1 1.2
select * from `players` where `players`.`id` = 151652 limit 1 1.23
select * from `players` where `players`.`id` = 151652 limit 1 1.23
select * from `players` where `players`.`id` = 151652 limit 1 1.24
select * from `players` where `players`.`id` = 151652 limit 1 1.22
select * from `players` where `players`.`id` = 151652 limit 1 1.23
select * from `players` where `players`.`id` = 151652 limit 1 1.27
select * from `players` where `players`.`id` = 151652 limit 1 1.15
select * from `players` where `players`.`id` = 151652 limit 1 1.11
select * from `players` where `players`.`id` = 151652 limit 1 1.14
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151652 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151652 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `players` where `players`.`id` = 151652 limit 1 1.25
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.09
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151652 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.74
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151652 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.586 and `sessions`.`end_at` <= '2024-01-18 10:39:46' order by `sessions`.`end_at` desc limit 1 31.01
select * from `players` where `players`.`id` = 151652 limit 1 1.08
select * from `players` where `players`.`id` = 151652 limit 1 0.95
select * from `players` where `players`.`id` = 151652 limit 1 1.05
select * from `players` where `players`.`id` = 151652 limit 1 1.03
select * from `players` where `players`.`id` = 151652 limit 1 1.04
select * from `players` where `players`.`id` = 151652 limit 1 1.11
select * from `players` where `players`.`id` = 151652 limit 1 1.15
select * from `players` where `players`.`id` = 151652 limit 1 1.08
select * from `players` where `players`.`id` = 151652 limit 1 1.28
select * from `players` where `players`.`id` = 151652 limit 1 1.28
select * from `players` where `players`.`id` = 151652 limit 1 1.2
select * from `players` where `players`.`id` = 151652 limit 1 1.24
select * from `players` where `players`.`id` = 151652 limit 1 1.23
select * from `players` where `players`.`id` = 151652 limit 1 1.19
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151652 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151652 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `players` where `players`.`id` = 151652 limit 1 1.28
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.26
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151652 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 151697 limit 1 1.16
select * from `players` where `players`.`id` = 151697 limit 1 1.07
select * from `players` where `players`.`id` = 151697 limit 1 1.22
select * from `players` where `players`.`id` = 151697 limit 1 1.32
select * from `players` where `players`.`id` = 151697 limit 1 1.06
select * from `players` where `players`.`id` = 151697 limit 1 1.09
select * from `players` where `players`.`id` = 151697 limit 1 1.04
select * from `players` where `players`.`id` = 151697 limit 1 1.1
select * from `players` where `players`.`id` = 151697 limit 1 1.15
select * from `players` where `players`.`id` = 151697 limit 1 1.16
select * from `players` where `players`.`id` = 151697 limit 1 1.2
select * from `players` where `players`.`id` = 151697 limit 1 1.24
select * from `players` where `players`.`id` = 151697 limit 1 1.11
select * from `players` where `players`.`id` = 151697 limit 1 1.13
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.35
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151697 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151697 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.99
select * from `players` where `players`.`id` = 151697 limit 1 1.07
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.09
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151697 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `players` where `players`.`id` = 151697 limit 1 1.14
select * from `players` where `players`.`id` = 151697 limit 1 1.26
select * from `players` where `players`.`id` = 151697 limit 1 1.04
select * from `players` where `players`.`id` = 151697 limit 1 1.06
select * from `players` where `players`.`id` = 151697 limit 1 0.97
select * from `players` where `players`.`id` = 151697 limit 1 1
select * from `players` where `players`.`id` = 151697 limit 1 1.08
select * from `players` where `players`.`id` = 151697 limit 1 1.05
select * from `players` where `players`.`id` = 151697 limit 1 1.07
select * from `players` where `players`.`id` = 151697 limit 1 1.14
select * from `players` where `players`.`id` = 151697 limit 1 1.19
select * from `players` where `players`.`id` = 151697 limit 1 1.15
select * from `players` where `players`.`id` = 151697 limit 1 1.2
select * from `players` where `players`.`id` = 151697 limit 1 1.28
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151697 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151697 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `players` where `players`.`id` = 151697 limit 1 1.25
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.24
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151697 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.73
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151697 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.406 and `sessions`.`end_at` <= '2024-01-18 10:39:46' order by `sessions`.`end_at` desc limit 1 31.94
select * from `players` where `players`.`id` = 151697 limit 1 1.13
select * from `players` where `players`.`id` = 151697 limit 1 1.08
select * from `players` where `players`.`id` = 151697 limit 1 1.15
select * from `players` where `players`.`id` = 151697 limit 1 1.22
select * from `players` where `players`.`id` = 151697 limit 1 1.24
select * from `players` where `players`.`id` = 151697 limit 1 1.23
select * from `players` where `players`.`id` = 151697 limit 1 1.03
select * from `players` where `players`.`id` = 151697 limit 1 1.15
select * from `players` where `players`.`id` = 151697 limit 1 1.09
select * from `players` where `players`.`id` = 151697 limit 1 1.05
select * from `players` where `players`.`id` = 151697 limit 1 1.08
select * from `players` where `players`.`id` = 151697 limit 1 1.07
select * from `players` where `players`.`id` = 151697 limit 1 1.14
select * from `players` where `players`.`id` = 151697 limit 1 1.06
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151697 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151697 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 151697 limit 1 1.15
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151697 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `players` where `players`.`id` = 151596 limit 1 1
select * from `players` where `players`.`id` = 151596 limit 1 0.99
select * from `players` where `players`.`id` = 151596 limit 1 1.05
select * from `players` where `players`.`id` = 151596 limit 1 1
select * from `players` where `players`.`id` = 151596 limit 1 1
select * from `players` where `players`.`id` = 151596 limit 1 1.09
select * from `players` where `players`.`id` = 151596 limit 1 0.99
select * from `players` where `players`.`id` = 151596 limit 1 0.93
select * from `players` where `players`.`id` = 151596 limit 1 0.92
select * from `players` where `players`.`id` = 151596 limit 1 0.95
select * from `players` where `players`.`id` = 151596 limit 1 1.1
select * from `players` where `players`.`id` = 151596 limit 1 1.17
select * from `players` where `players`.`id` = 151596 limit 1 1.04
select * from `players` where `players`.`id` = 151596 limit 1 1.12
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.96
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151596 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151596 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 151596 limit 1 0.97
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.95
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151596 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.62
select * from `players` where `players`.`id` = 151596 limit 1 1.2
select * from `players` where `players`.`id` = 151596 limit 1 1.01
select * from `players` where `players`.`id` = 151596 limit 1 1.13
select * from `players` where `players`.`id` = 151596 limit 1 1.13
select * from `players` where `players`.`id` = 151596 limit 1 1.16
select * from `players` where `players`.`id` = 151596 limit 1 1.28
select * from `players` where `players`.`id` = 151596 limit 1 1.31
select * from `players` where `players`.`id` = 151596 limit 1 1.22
select * from `players` where `players`.`id` = 151596 limit 1 1.22
select * from `players` where `players`.`id` = 151596 limit 1 1.18
select * from `players` where `players`.`id` = 151596 limit 1 1.2
select * from `players` where `players`.`id` = 151596 limit 1 1.16
select * from `players` where `players`.`id` = 151596 limit 1 1.14
select * from `players` where `players`.`id` = 151596 limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151596 limit 1 0.84
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151596 limit 1 0.83
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.81
select * from `players` where `players`.`id` = 151596 limit 1 1.46
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.24
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151596 limit 1 0.9
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.71
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151596 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.676 and `sessions`.`end_at` <= '2024-01-18 10:39:47' order by `sessions`.`end_at` desc limit 1 31.27
select * from `players` where `players`.`id` = 151596 limit 1 0.88
select * from `players` where `players`.`id` = 151596 limit 1 0.86
select * from `players` where `players`.`id` = 151596 limit 1 1.01
select * from `players` where `players`.`id` = 151596 limit 1 0.86
select * from `players` where `players`.`id` = 151596 limit 1 1.08
select * from `players` where `players`.`id` = 151596 limit 1 1.1
select * from `players` where `players`.`id` = 151596 limit 1 1
select * from `players` where `players`.`id` = 151596 limit 1 1.1
select * from `players` where `players`.`id` = 151596 limit 1 0.97
select * from `players` where `players`.`id` = 151596 limit 1 1
select * from `players` where `players`.`id` = 151596 limit 1 0.98
select * from `players` where `players`.`id` = 151596 limit 1 1.09
select * from `players` where `players`.`id` = 151596 limit 1 1.23
select * from `players` where `players`.`id` = 151596 limit 1 1.3
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151596 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151596 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 151596 limit 1 1.2
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.15
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151596 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `players` where `players`.`id` = 151594 limit 1 1.21
select * from `players` where `players`.`id` = 151594 limit 1 1.27
select * from `players` where `players`.`id` = 151594 limit 1 1.25
select * from `players` where `players`.`id` = 151594 limit 1 1.07
select * from `players` where `players`.`id` = 151594 limit 1 1.28
select * from `players` where `players`.`id` = 151594 limit 1 1.15
select * from `players` where `players`.`id` = 151594 limit 1 1.1
select * from `players` where `players`.`id` = 151594 limit 1 1.2
select * from `players` where `players`.`id` = 151594 limit 1 1.08
select * from `players` where `players`.`id` = 151594 limit 1 1.05
select * from `players` where `players`.`id` = 151594 limit 1 1.05
select * from `players` where `players`.`id` = 151594 limit 1 1.21
select * from `players` where `players`.`id` = 151594 limit 1 1.05
select * from `players` where `players`.`id` = 151594 limit 1 0.99
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.24
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151594 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151594 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `players` where `players`.`id` = 151594 limit 1 1.1
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.05
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151594 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `players` where `players`.`id` = 151594 limit 1 1.13
select * from `players` where `players`.`id` = 151594 limit 1 1.03
select * from `players` where `players`.`id` = 151594 limit 1 1.04
select * from `players` where `players`.`id` = 151594 limit 1 1.04
select * from `players` where `players`.`id` = 151594 limit 1 0.99
select * from `players` where `players`.`id` = 151594 limit 1 1.07
select * from `players` where `players`.`id` = 151594 limit 1 1.07
select * from `players` where `players`.`id` = 151594 limit 1 1.03
select * from `players` where `players`.`id` = 151594 limit 1 1.02
select * from `players` where `players`.`id` = 151594 limit 1 0.93
select * from `players` where `players`.`id` = 151594 limit 1 0.91
select * from `players` where `players`.`id` = 151594 limit 1 1.07
select * from `players` where `players`.`id` = 151594 limit 1 1.15
select * from `players` where `players`.`id` = 151594 limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151594 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151594 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 151594 limit 1 1.19
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.23
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151594 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.76
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151594 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 9.009 and `sessions`.`end_at` <= '2024-01-18 10:39:47' order by `sessions`.`end_at` desc limit 1 29.33
select * from `players` where `players`.`id` = 151594 limit 1 1.1
select * from `players` where `players`.`id` = 151594 limit 1 1.15
select * from `players` where `players`.`id` = 151594 limit 1 1.12
select * from `players` where `players`.`id` = 151594 limit 1 1.11
select * from `players` where `players`.`id` = 151594 limit 1 1.09
select * from `players` where `players`.`id` = 151594 limit 1 1.11
select * from `players` where `players`.`id` = 151594 limit 1 1.11
select * from `players` where `players`.`id` = 151594 limit 1 1.14
select * from `players` where `players`.`id` = 151594 limit 1 1.08
select * from `players` where `players`.`id` = 151594 limit 1 1.2
select * from `players` where `players`.`id` = 151594 limit 1 1.27
select * from `players` where `players`.`id` = 151594 limit 1 1.2
select * from `players` where `players`.`id` = 151594 limit 1 1.34
select * from `players` where `players`.`id` = 151594 limit 1 1.19
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151594 limit 1 0.93
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.86
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151594 limit 1 1.33
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `players` where `players`.`id` = 151594 limit 1 5.91
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.04
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151594 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 151591 limit 1 1.03
select * from `players` where `players`.`id` = 151591 limit 1 0.92
select * from `players` where `players`.`id` = 151591 limit 1 0.85
select * from `players` where `players`.`id` = 151591 limit 1 0.84
select * from `players` where `players`.`id` = 151591 limit 1 0.83
select * from `players` where `players`.`id` = 151591 limit 1 0.81
select * from `players` where `players`.`id` = 151591 limit 1 0.83
select * from `players` where `players`.`id` = 151591 limit 1 0.88
select * from `players` where `players`.`id` = 151591 limit 1 0.92
select * from `players` where `players`.`id` = 151591 limit 1 0.93
select * from `players` where `players`.`id` = 151591 limit 1 0.88
select * from `players` where `players`.`id` = 151591 limit 1 0.94
select * from `players` where `players`.`id` = 151591 limit 1 1.06
select * from `players` where `players`.`id` = 151591 limit 1 1.01
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.94
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151591 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151591 limit 1 0.61
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `players` where `players`.`id` = 151591 limit 1 0.95
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.16
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151591 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `players` where `players`.`id` = 151591 limit 1 1.24
select * from `players` where `players`.`id` = 151591 limit 1 1.14
select * from `players` where `players`.`id` = 151591 limit 1 1.16
select * from `players` where `players`.`id` = 151591 limit 1 1.14
select * from `players` where `players`.`id` = 151591 limit 1 1.13
select * from `players` where `players`.`id` = 151591 limit 1 1.14
select * from `players` where `players`.`id` = 151591 limit 1 1.14
select * from `players` where `players`.`id` = 151591 limit 1 1.04
select * from `players` where `players`.`id` = 151591 limit 1 1.09
select * from `players` where `players`.`id` = 151591 limit 1 0.98
select * from `players` where `players`.`id` = 151591 limit 1 1.04
select * from `players` where `players`.`id` = 151591 limit 1 1.15
select * from `players` where `players`.`id` = 151591 limit 1 1.15
select * from `players` where `players`.`id` = 151591 limit 1 1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151591 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151591 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `players` where `players`.`id` = 151591 limit 1 1.07
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.06
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151591 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.69
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151591 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.712 and `sessions`.`end_at` <= '2024-01-18 10:39:47' order by `sessions`.`end_at` desc limit 1 28.72
select * from `players` where `players`.`id` = 151591 limit 1 1.06
select * from `players` where `players`.`id` = 151591 limit 1 1.06
select * from `players` where `players`.`id` = 151591 limit 1 0.97
select * from `players` where `players`.`id` = 151591 limit 1 1.1
select * from `players` where `players`.`id` = 151591 limit 1 1.11
select * from `players` where `players`.`id` = 151591 limit 1 1.03
select * from `players` where `players`.`id` = 151591 limit 1 1.15
select * from `players` where `players`.`id` = 151591 limit 1 1.07
select * from `players` where `players`.`id` = 151591 limit 1 1.11
select * from `players` where `players`.`id` = 151591 limit 1 1.36
select * from `players` where `players`.`id` = 151591 limit 1 1.3
select * from `players` where `players`.`id` = 151591 limit 1 1.09
select * from `players` where `players`.`id` = 151591 limit 1 1.09
select * from `players` where `players`.`id` = 151591 limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151591 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151591 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `players` where `players`.`id` = 151591 limit 1 1.29
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.22
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151591 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `players` where `players`.`id` = 151589 limit 1 1.28
select * from `players` where `players`.`id` = 151589 limit 1 1.16
select * from `players` where `players`.`id` = 151589 limit 1 1.3
select * from `players` where `players`.`id` = 151589 limit 1 1.3
select * from `players` where `players`.`id` = 151589 limit 1 1.22
select * from `players` where `players`.`id` = 151589 limit 1 1.25
select * from `players` where `players`.`id` = 151589 limit 1 1.19
select * from `players` where `players`.`id` = 151589 limit 1 1.23
select * from `players` where `players`.`id` = 151589 limit 1 1.24
select * from `players` where `players`.`id` = 151589 limit 1 1.24
select * from `players` where `players`.`id` = 151589 limit 1 1.34
select * from `players` where `players`.`id` = 151589 limit 1 0.96
select * from `players` where `players`.`id` = 151589 limit 1 1.23
select * from `players` where `players`.`id` = 151589 limit 1 1.1
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.27
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151589 limit 1 0.85
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.82
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151589 limit 1 0.85
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.89
select * from `players` where `players`.`id` = 151589 limit 1 1.42
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.15
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151589 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 151589 limit 1 1.18
select * from `players` where `players`.`id` = 151589 limit 1 1.1
select * from `players` where `players`.`id` = 151589 limit 1 1.25
select * from `players` where `players`.`id` = 151589 limit 1 1.05
select * from `players` where `players`.`id` = 151589 limit 1 1.05
select * from `players` where `players`.`id` = 151589 limit 1 0.9
select * from `players` where `players`.`id` = 151589 limit 1 0.87
select * from `players` where `players`.`id` = 151589 limit 1 0.98
select * from `players` where `players`.`id` = 151589 limit 1 0.97
select * from `players` where `players`.`id` = 151589 limit 1 0.9
select * from `players` where `players`.`id` = 151589 limit 1 1.02
select * from `players` where `players`.`id` = 151589 limit 1 1.03
select * from `players` where `players`.`id` = 151589 limit 1 0.94
select * from `players` where `players`.`id` = 151589 limit 1 0.87
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151589 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151589 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.68
select * from `players` where `players`.`id` = 151589 limit 1 1.03
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.17
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151589 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.6
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151589 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.514 and `sessions`.`end_at` <= '2024-01-18 10:39:48' order by `sessions`.`end_at` desc limit 1 29.73
select * from `players` where `players`.`id` = 151589 limit 1 1.2
select * from `players` where `players`.`id` = 151589 limit 1 1.06
select * from `players` where `players`.`id` = 151589 limit 1 1.03
select * from `players` where `players`.`id` = 151589 limit 1 1.08
select * from `players` where `players`.`id` = 151589 limit 1 1.1
select * from `players` where `players`.`id` = 151589 limit 1 1.27
select * from `players` where `players`.`id` = 151589 limit 1 1.08
select * from `players` where `players`.`id` = 151589 limit 1 1.17
select * from `players` where `players`.`id` = 151589 limit 1 1.05
select * from `players` where `players`.`id` = 151589 limit 1 1.34
select * from `players` where `players`.`id` = 151589 limit 1 1.18
select * from `players` where `players`.`id` = 151589 limit 1 1.13
select * from `players` where `players`.`id` = 151589 limit 1 1.18
select * from `players` where `players`.`id` = 151589 limit 1 1.16
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151589 limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151589 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.84
select * from `players` where `players`.`id` = 151589 limit 1 1.05
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.18
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151589 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.93
select * from `players` where `players`.`id` = 151569 limit 1 1.01
select * from `players` where `players`.`id` = 151569 limit 1 1
select * from `players` where `players`.`id` = 151569 limit 1 1.01
select * from `players` where `players`.`id` = 151569 limit 1 1.07
select * from `players` where `players`.`id` = 151569 limit 1 1.07
select * from `players` where `players`.`id` = 151569 limit 1 1.11
select * from `players` where `players`.`id` = 151569 limit 1 1.02
select * from `players` where `players`.`id` = 151569 limit 1 1.12
select * from `players` where `players`.`id` = 151569 limit 1 1.06
select * from `players` where `players`.`id` = 151569 limit 1 1.09
select * from `players` where `players`.`id` = 151569 limit 1 1.09
select * from `players` where `players`.`id` = 151569 limit 1 1.1
select * from `players` where `players`.`id` = 151569 limit 1 1.02
select * from `players` where `players`.`id` = 151569 limit 1 1.25
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151569 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.84
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151569 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 151569 limit 1 1.05
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.99
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151569 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.61
select * from `players` where `players`.`id` = 151569 limit 1 0.91
select * from `players` where `players`.`id` = 151569 limit 1 0.91
select * from `players` where `players`.`id` = 151569 limit 1 0.95
select * from `players` where `players`.`id` = 151569 limit 1 0.93
select * from `players` where `players`.`id` = 151569 limit 1 0.98
select * from `players` where `players`.`id` = 151569 limit 1 0.9
select * from `players` where `players`.`id` = 151569 limit 1 0.96
select * from `players` where `players`.`id` = 151569 limit 1 0.88
select * from `players` where `players`.`id` = 151569 limit 1 0.93
select * from `players` where `players`.`id` = 151569 limit 1 0.93
select * from `players` where `players`.`id` = 151569 limit 1 1.08
select * from `players` where `players`.`id` = 151569 limit 1 0.89
select * from `players` where `players`.`id` = 151569 limit 1 0.91
select * from `players` where `players`.`id` = 151569 limit 1 1.08
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151569 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151569 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 151569 limit 1 1.17
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.14
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151569 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.77
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151569 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.991 and `sessions`.`end_at` <= '2024-01-18 10:39:48' order by `sessions`.`end_at` desc limit 1 27.47
select * from `players` where `players`.`id` = 151569 limit 1 1.07
select * from `players` where `players`.`id` = 151569 limit 1 0.99
select * from `players` where `players`.`id` = 151569 limit 1 0.96
select * from `players` where `players`.`id` = 151569 limit 1 1.24
select * from `players` where `players`.`id` = 151569 limit 1 1.06
select * from `players` where `players`.`id` = 151569 limit 1 1.08
select * from `players` where `players`.`id` = 151569 limit 1 1.01
select * from `players` where `players`.`id` = 151569 limit 1 1.38
select * from `players` where `players`.`id` = 151569 limit 1 0.89
select * from `players` where `players`.`id` = 151569 limit 1 1.06
select * from `players` where `players`.`id` = 151569 limit 1 1.06
select * from `players` where `players`.`id` = 151569 limit 1 1.35
select * from `players` where `players`.`id` = 151569 limit 1 1.16
select * from `players` where `players`.`id` = 151569 limit 1 1.09
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151569 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151569 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 151569 limit 1 1.16
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.11
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151569 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.78
select * from `players` where `players`.`id` = 151568 limit 1 1.19
select * from `players` where `players`.`id` = 151568 limit 1 1.08
select * from `players` where `players`.`id` = 151568 limit 1 0.97
select * from `players` where `players`.`id` = 151568 limit 1 1.02
select * from `players` where `players`.`id` = 151568 limit 1 1.17
select * from `players` where `players`.`id` = 151568 limit 1 0.92
select * from `players` where `players`.`id` = 151568 limit 1 0.99
select * from `players` where `players`.`id` = 151568 limit 1 0.96
select * from `players` where `players`.`id` = 151568 limit 1 0.91
select * from `players` where `players`.`id` = 151568 limit 1 0.96
select * from `players` where `players`.`id` = 151568 limit 1 0.97
select * from `players` where `players`.`id` = 151568 limit 1 0.95
select * from `players` where `players`.`id` = 151568 limit 1 0.93
select * from `players` where `players`.`id` = 151568 limit 1 1.03
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.05
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151568 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151568 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `players` where `players`.`id` = 151568 limit 1 0.84
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.96
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151568 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `players` where `players`.`id` = 151568 limit 1 0.92
select * from `players` where `players`.`id` = 151568 limit 1 0.98
select * from `players` where `players`.`id` = 151568 limit 1 1.03
select * from `players` where `players`.`id` = 151568 limit 1 1.02
select * from `players` where `players`.`id` = 151568 limit 1 1.01
select * from `players` where `players`.`id` = 151568 limit 1 0.99
select * from `players` where `players`.`id` = 151568 limit 1 1.15
select * from `players` where `players`.`id` = 151568 limit 1 0.95
select * from `players` where `players`.`id` = 151568 limit 1 0.95
select * from `players` where `players`.`id` = 151568 limit 1 1.09
select * from `players` where `players`.`id` = 151568 limit 1 1.02
select * from `players` where `players`.`id` = 151568 limit 1 0.96
select * from `players` where `players`.`id` = 151568 limit 1 0.95
select * from `players` where `players`.`id` = 151568 limit 1 0.94
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151568 limit 1 0.64
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.65
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151568 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `players` where `players`.`id` = 151568 limit 1 1.08
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.03
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151568 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.75
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151568 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.883 and `sessions`.`end_at` <= '2024-01-18 10:39:48' order by `sessions`.`end_at` desc limit 1 29.24
select * from `players` where `players`.`id` = 151568 limit 1 0.95
select * from `players` where `players`.`id` = 151568 limit 1 0.87
select * from `players` where `players`.`id` = 151568 limit 1 0.91
select * from `players` where `players`.`id` = 151568 limit 1 0.86
select * from `players` where `players`.`id` = 151568 limit 1 0.93
select * from `players` where `players`.`id` = 151568 limit 1 0.88
select * from `players` where `players`.`id` = 151568 limit 1 0.87
select * from `players` where `players`.`id` = 151568 limit 1 0.9
select * from `players` where `players`.`id` = 151568 limit 1 0.96
select * from `players` where `players`.`id` = 151568 limit 1 1
select * from `players` where `players`.`id` = 151568 limit 1 1.02
select * from `players` where `players`.`id` = 151568 limit 1 1.04
select * from `players` where `players`.`id` = 151568 limit 1 1.01
select * from `players` where `players`.`id` = 151568 limit 1 1.1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151568 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151568 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 151568 limit 1 1.04
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151568 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.73
select * from `players` where `players`.`id` = 151463 limit 1 1.02
select * from `players` where `players`.`id` = 151463 limit 1 0.97
select * from `players` where `players`.`id` = 151463 limit 1 1.02
select * from `players` where `players`.`id` = 151463 limit 1 1.03
select * from `players` where `players`.`id` = 151463 limit 1 1.01
select * from `players` where `players`.`id` = 151463 limit 1 1.07
select * from `players` where `players`.`id` = 151463 limit 1 1.49
select * from `players` where `players`.`id` = 151463 limit 1 1.03
select * from `players` where `players`.`id` = 151463 limit 1 1.56
select * from `players` where `players`.`id` = 151463 limit 1 2.47
select * from `players` where `players`.`id` = 151463 limit 1 1.23
select * from `players` where `players`.`id` = 151463 limit 1 1.31
select * from `players` where `players`.`id` = 151463 limit 1 1.04
select * from `players` where `players`.`id` = 151463 limit 1 1.29
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.02
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151463 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151463 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.62
select * from `players` where `players`.`id` = 151463 limit 1 0.91
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.81
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151463 limit 1 0.62
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `players` where `players`.`id` = 151463 limit 1 0.94
select * from `players` where `players`.`id` = 151463 limit 1 0.97
select * from `players` where `players`.`id` = 151463 limit 1 0.95
select * from `players` where `players`.`id` = 151463 limit 1 1.06
select * from `players` where `players`.`id` = 151463 limit 1 1.05
select * from `players` where `players`.`id` = 151463 limit 1 1.16
select * from `players` where `players`.`id` = 151463 limit 1 1.17
select * from `players` where `players`.`id` = 151463 limit 1 1.27
select * from `players` where `players`.`id` = 151463 limit 1 1.17
select * from `players` where `players`.`id` = 151463 limit 1 1.15
select * from `players` where `players`.`id` = 151463 limit 1 1.1
select * from `players` where `players`.`id` = 151463 limit 1 1.08
select * from `players` where `players`.`id` = 151463 limit 1 1
select * from `players` where `players`.`id` = 151463 limit 1 1.07
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151463 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151463 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `players` where `players`.`id` = 151463 limit 1 1.12
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.15
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151463 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.8
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151463 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.568 and `sessions`.`end_at` <= '2024-01-18 10:39:49' order by `sessions`.`end_at` desc limit 1 30.79
select * from `players` where `players`.`id` = 151463 limit 1 1.13
select * from `players` where `players`.`id` = 151463 limit 1 1.24
select * from `players` where `players`.`id` = 151463 limit 1 1.06
select * from `players` where `players`.`id` = 151463 limit 1 1.12
select * from `players` where `players`.`id` = 151463 limit 1 1.04
select * from `players` where `players`.`id` = 151463 limit 1 1.23
select * from `players` where `players`.`id` = 151463 limit 1 0.93
select * from `players` where `players`.`id` = 151463 limit 1 0.92
select * from `players` where `players`.`id` = 151463 limit 1 0.91
select * from `players` where `players`.`id` = 151463 limit 1 1
select * from `players` where `players`.`id` = 151463 limit 1 0.92
select * from `players` where `players`.`id` = 151463 limit 1 0.89
select * from `players` where `players`.`id` = 151463 limit 1 0.92
select * from `players` where `players`.`id` = 151463 limit 1 5.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151463 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151463 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.82
select * from `players` where `players`.`id` = 151463 limit 1 1.06
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.01
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151463 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 151462 limit 1 0.89
select * from `players` where `players`.`id` = 151462 limit 1 0.84
select * from `players` where `players`.`id` = 151462 limit 1 0.85
select * from `players` where `players`.`id` = 151462 limit 1 0.83
select * from `players` where `players`.`id` = 151462 limit 1 0.95
select * from `players` where `players`.`id` = 151462 limit 1 0.8
select * from `players` where `players`.`id` = 151462 limit 1 0.88
select * from `players` where `players`.`id` = 151462 limit 1 0.85
select * from `players` where `players`.`id` = 151462 limit 1 0.85
select * from `players` where `players`.`id` = 151462 limit 1 1
select * from `players` where `players`.`id` = 151462 limit 1 0.92
select * from `players` where `players`.`id` = 151462 limit 1 0.98
select * from `players` where `players`.`id` = 151462 limit 1 0.9
select * from `players` where `players`.`id` = 151462 limit 1 0.89
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.16
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151462 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151462 limit 1 0.69
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `players` where `players`.`id` = 151462 limit 1 1.08
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151462 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `players` where `players`.`id` = 151462 limit 1 1.07
select * from `players` where `players`.`id` = 151462 limit 1 1.04
select * from `players` where `players`.`id` = 151462 limit 1 1.14
select * from `players` where `players`.`id` = 151462 limit 1 1.08
select * from `players` where `players`.`id` = 151462 limit 1 1.08
select * from `players` where `players`.`id` = 151462 limit 1 1.08
select * from `players` where `players`.`id` = 151462 limit 1 1.09
select * from `players` where `players`.`id` = 151462 limit 1 1.19
select * from `players` where `players`.`id` = 151462 limit 1 1.22
select * from `players` where `players`.`id` = 151462 limit 1 1.2
select * from `players` where `players`.`id` = 151462 limit 1 1.23
select * from `players` where `players`.`id` = 151462 limit 1 0.84
select * from `players` where `players`.`id` = 151462 limit 1 0.85
select * from `players` where `players`.`id` = 151462 limit 1 1
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151462 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151462 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.89
select * from `players` where `players`.`id` = 151462 limit 1 1.78
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.38
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151462 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 1.1
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151462 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.433 and `sessions`.`end_at` <= '2024-01-18 10:39:49' order by `sessions`.`end_at` desc limit 1 32.21
select * from `players` where `players`.`id` = 151462 limit 1 1.27
select * from `players` where `players`.`id` = 151462 limit 1 1.21
select * from `players` where `players`.`id` = 151462 limit 1 1.43
select * from `players` where `players`.`id` = 151462 limit 1 1.23
select * from `players` where `players`.`id` = 151462 limit 1 1.25
select * from `players` where `players`.`id` = 151462 limit 1 1.19
select * from `players` where `players`.`id` = 151462 limit 1 1.06
select * from `players` where `players`.`id` = 151462 limit 1 1.24
select * from `players` where `players`.`id` = 151462 limit 1 1.12
select * from `players` where `players`.`id` = 151462 limit 1 1.17
select * from `players` where `players`.`id` = 151462 limit 1 1.16
select * from `players` where `players`.`id` = 151462 limit 1 1.13
select * from `players` where `players`.`id` = 151462 limit 1 1.16
select * from `players` where `players`.`id` = 151462 limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151462 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151462 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 1.38
select * from `players` where `players`.`id` = 151462 limit 1 1.41
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 16.59
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151462 limit 1 0.91
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.75
select * from `players` where `players`.`id` = 151461 limit 1 1.13
select * from `players` where `players`.`id` = 151461 limit 1 1.09
select * from `players` where `players`.`id` = 151461 limit 1 1.12
select * from `players` where `players`.`id` = 151461 limit 1 0.93
select * from `players` where `players`.`id` = 151461 limit 1 1.14
select * from `players` where `players`.`id` = 151461 limit 1 0.9
select * from `players` where `players`.`id` = 151461 limit 1 0.92
select * from `players` where `players`.`id` = 151461 limit 1 0.91
select * from `players` where `players`.`id` = 151461 limit 1 1.02
select * from `players` where `players`.`id` = 151461 limit 1 0.96
select * from `players` where `players`.`id` = 151461 limit 1 1.14
select * from `players` where `players`.`id` = 151461 limit 1 1.06
select * from `players` where `players`.`id` = 151461 limit 1 1.1
select * from `players` where `players`.`id` = 151461 limit 1 1.15
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.33
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151461 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151461 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.64
select * from `players` where `players`.`id` = 151461 limit 1 1.11
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.2
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151461 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `players` where `players`.`id` = 151461 limit 1 1.17
select * from `players` where `players`.`id` = 151461 limit 1 1.06
select * from `players` where `players`.`id` = 151461 limit 1 1.3
select * from `players` where `players`.`id` = 151461 limit 1 1.19
select * from `players` where `players`.`id` = 151461 limit 1 1.12
select * from `players` where `players`.`id` = 151461 limit 1 1.13
select * from `players` where `players`.`id` = 151461 limit 1 1.2
select * from `players` where `players`.`id` = 151461 limit 1 1.3
select * from `players` where `players`.`id` = 151461 limit 1 1.31
select * from `players` where `players`.`id` = 151461 limit 1 1.19
select * from `players` where `players`.`id` = 151461 limit 1 1.18
select * from `players` where `players`.`id` = 151461 limit 1 1.1
select * from `players` where `players`.`id` = 151461 limit 1 1.08
select * from `players` where `players`.`id` = 151461 limit 1 1.06
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151461 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151461 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.7
select * from `players` where `players`.`id` = 151461 limit 1 1.36
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.18
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151461 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.72
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151461 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 0 and `sessions`.`end_at` <= '2024-01-18 10:39:49' order by `sessions`.`end_at` desc limit 1 22.54
select `date`, `value` from `players_speeds_with_sub` where `player_id` = 151461 and `parameter_id` = '38742' and `value` > 0 and `date` <= '2024-01-18' order by `date` desc limit 1 20.87
select * from `players` where `players`.`id` = 151461 limit 1 1.14
select * from `players` where `players`.`id` = 151461 limit 1 1.05
select * from `players` where `players`.`id` = 151461 limit 1 1.11
select * from `players` where `players`.`id` = 151461 limit 1 1.34
select * from `players` where `players`.`id` = 151461 limit 1 1.24
select * from `players` where `players`.`id` = 151461 limit 1 0.99
select * from `players` where `players`.`id` = 151461 limit 1 1.09
select * from `players` where `players`.`id` = 151461 limit 1 1.22
select * from `players` where `players`.`id` = 151461 limit 1 1.22
select * from `players` where `players`.`id` = 151461 limit 1 1.28
select * from `players` where `players`.`id` = 151461 limit 1 1.32
select * from `players` where `players`.`id` = 151461 limit 1 1.19
select * from `players` where `players`.`id` = 151461 limit 1 1.19
select * from `players` where `players`.`id` = 151461 limit 1 1.3
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151461 limit 1 0.86
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.84
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151461 limit 1 1.25
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.94
select * from `players` where `players`.`id` = 151461 limit 1 1.03
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.3
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151461 limit 1 0.7
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.73
select * from `players` where `players`.`id` = 151928 limit 1 0.99
select * from `players` where `players`.`id` = 151928 limit 1 0.86
select * from `players` where `players`.`id` = 151928 limit 1 0.8
select * from `players` where `players`.`id` = 151928 limit 1 0.85
select * from `players` where `players`.`id` = 151928 limit 1 0.78
select * from `players` where `players`.`id` = 151928 limit 1 0.8
select * from `players` where `players`.`id` = 151928 limit 1 0.87
select * from `players` where `players`.`id` = 151928 limit 1 0.82
select * from `players` where `players`.`id` = 151928 limit 1 0.85
select * from `players` where `players`.`id` = 151928 limit 1 0.8
select * from `players` where `players`.`id` = 151928 limit 1 0.81
select * from `players` where `players`.`id` = 151928 limit 1 0.81
select * from `players` where `players`.`id` = 151928 limit 1 0.88
select * from `players` where `players`.`id` = 151928 limit 1 1.09
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.3
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151928 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.63
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151928 limit 1 0.75
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.68
select * from `players` where `players`.`id` = 151928 limit 1 1.12
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.23
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151928 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.71
select * from `players` where `players`.`id` = 151928 limit 1 1.12
select * from `players` where `players`.`id` = 151928 limit 1 1.08
select * from `players` where `players`.`id` = 151928 limit 1 1.17
select * from `players` where `players`.`id` = 151928 limit 1 1.26
select * from `players` where `players`.`id` = 151928 limit 1 1.18
select * from `players` where `players`.`id` = 151928 limit 1 1.06
select * from `players` where `players`.`id` = 151928 limit 1 1.12
select * from `players` where `players`.`id` = 151928 limit 1 1.03
select * from `players` where `players`.`id` = 151928 limit 1 1.15
select * from `players` where `players`.`id` = 151928 limit 1 1.06
select * from `players` where `players`.`id` = 151928 limit 1 1.09
select * from `players` where `players`.`id` = 151928 limit 1 0.99
select * from `players` where `players`.`id` = 151928 limit 1 1
select * from `players` where `players`.`id` = 151928 limit 1 1.14
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151928 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151928 limit 1 0.72
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.72
select * from `players` where `players`.`id` = 151928 limit 1 1.24
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.18
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151928 limit 1 0.85
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.73
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151928 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 0 and `sessions`.`end_at` <= '2024-01-18 10:39:50' order by `sessions`.`end_at` desc limit 1 21.04
select `date`, `value` from `players_speeds_with_sub` where `player_id` = 151928 and `parameter_id` = '38742' and `value` > 0 and `date` <= '2024-01-18' order by `date` desc limit 1 21.21
select * from `players` where `players`.`id` = 151928 limit 1 1.18
select * from `players` where `players`.`id` = 151928 limit 1 1.18
select * from `players` where `players`.`id` = 151928 limit 1 1.07
select * from `players` where `players`.`id` = 151928 limit 1 1.06
select * from `players` where `players`.`id` = 151928 limit 1 1.11
select * from `players` where `players`.`id` = 151928 limit 1 1.2
select * from `players` where `players`.`id` = 151928 limit 1 1.19
select * from `players` where `players`.`id` = 151928 limit 1 1.27
select * from `players` where `players`.`id` = 151928 limit 1 1.25
select * from `players` where `players`.`id` = 151928 limit 1 1.25
select * from `players` where `players`.`id` = 151928 limit 1 1.27
select * from `players` where `players`.`id` = 151928 limit 1 1.24
select * from `players` where `players`.`id` = 151928 limit 1 1.24
select * from `players` where `players`.`id` = 151928 limit 1 1.21
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151928 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151928 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.79
select * from `players` where `players`.`id` = 151928 limit 1 1.27
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.2
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151928 limit 1 0.77
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.76
select * from `players` where `players`.`id` = 151937 limit 1 1.09
select * from `players` where `players`.`id` = 151937 limit 1 1.26
select * from `players` where `players`.`id` = 151937 limit 1 1.11
select * from `players` where `players`.`id` = 151937 limit 1 1.15
select * from `players` where `players`.`id` = 151937 limit 1 1.12
select * from `players` where `players`.`id` = 151937 limit 1 1.12
select * from `players` where `players`.`id` = 151937 limit 1 1.12
select * from `players` where `players`.`id` = 151937 limit 1 1.22
select * from `players` where `players`.`id` = 151937 limit 1 1.3
select * from `players` where `players`.`id` = 151937 limit 1 1.32
select * from `players` where `players`.`id` = 151937 limit 1 1.16
select * from `players` where `players`.`id` = 151937 limit 1 1.22
select * from `players` where `players`.`id` = 151937 limit 1 1.22
select * from `players` where `players`.`id` = 151937 limit 1 1.15
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.18
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151937 limit 1 0.79
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.8
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151937 limit 1 0.9
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.87
select * from `players` where `players`.`id` = 151937 limit 1 1.07
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.13
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` = 151937 limit 1 0.71
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3374 and `player_id` is null and `user_id` = 116 limit 1 0.85
select * from `players` where `players`.`id` = 151937 limit 1 1.16
select * from `players` where `players`.`id` = 151937 limit 1 1.29
select * from `players` where `players`.`id` = 151937 limit 1 1.25
select * from `players` where `players`.`id` = 151937 limit 1 1.21
select * from `players` where `players`.`id` = 151937 limit 1 1.22
select * from `players` where `players`.`id` = 151937 limit 1 1.22
select * from `players` where `players`.`id` = 151937 limit 1 1.11
select * from `players` where `players`.`id` = 151937 limit 1 1.04
select * from `players` where `players`.`id` = 151937 limit 1 1.13
select * from `players` where `players`.`id` = 151937 limit 1 1.21
select * from `players` where `players`.`id` = 151937 limit 1 1.03
select * from `players` where `players`.`id` = 151937 limit 1 1.14
select * from `players` where `players`.`id` = 151937 limit 1 1.08
select * from `players` where `players`.`id` = 151937 limit 1 1.3
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151937 limit 1 0.76
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.73
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151937 limit 1 0.78
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.74
select * from `players` where `players`.`id` = 151937 limit 1 1.04
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.04
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` = 151937 limit 1 0.68
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 3375 and `player_id` is null and `user_id` = 116 limit 1 0.69
select `sessions`.`end_at`, `players_speeds_with_sub`.`value` from `players_speeds_with_sub` inner join `sessions` on `sessions`.`id` = `players_speeds_with_sub`.`session_id` where `players_speeds_with_sub`.`player_id` = 151937 and `players_speeds_with_sub`.`parameter_id` = '38742' and `players_speeds_with_sub`.`value` > 8.244 and `sessions`.`end_at` <= '2024-01-18 10:39:50' order by `sessions`.`end_at` desc limit 1 24.59
select * from `players` where `players`.`id` = 151937 limit 1 0.99
select * from `players` where `players`.`id` = 151937 limit 1 1.06
select * from `players` where `players`.`id` = 151937 limit 1 0.87
select * from `players` where `players`.`id` = 151937 limit 1 1.01
select * from `players` where `players`.`id` = 151937 limit 1 0.89
select * from `players` where `players`.`id` = 151937 limit 1 0.87
select * from `players` where `players`.`id` = 151937 limit 1 0.87
select * from `players` where `players`.`id` = 151937 limit 1 1
select * from `players` where `players`.`id` = 151937 limit 1 0.84
select * from `players` where `players`.`id` = 151937 limit 1 0.77
select * from `players` where `players`.`id` = 151937 limit 1 0.78
select * from `players` where `players`.`id` = 151937 limit 1 1.14
select * from `players` where `players`.`id` = 151937 limit 1 1.27
select * from `players` where `players`.`id` = 151937 limit 1 1.09
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151937 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.83
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151937 limit 1 0.66
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.68
select * from `players` where `players`.`id` = 151937 limit 1 1.18
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.9
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` = 151937 limit 1 0.67
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = 18495 and `player_id` is null and `user_id` = 116 limit 1 0.66
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 108812 order by `date` desc 105.15
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 107728 order by `date` desc 116.1
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 87121 order by `date` desc 187.48
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 87119 order by `date` desc 229.59
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 36128 order by `date` desc 230.2
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 17027 order by `date` desc 238.22
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 17013 order by `date` desc 228.24
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 17005 order by `date` desc 238.42
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 16999 order by `date` desc 199.61
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 148665 order by `date` desc 108.2
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149051 order by `date` desc 115.06
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149053 order by `date` desc 64.64
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149632 order by `date` desc 98.85
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149726 order by `date` desc 87.35
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149735 order by `date` desc 96.04
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149877 order by `date` desc 80.02
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149933 order by `date` desc 78.34
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149976 order by `date` desc 69.24
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149977 order by `date` desc 74.76
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149982 order by `date` desc 79.11
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 149983 order by `date` desc 73.03
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151652 order by `date` desc 55.76
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151697 order by `date` desc 60.96
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151596 order by `date` desc 59.73
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151594 order by `date` desc 60.95
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151591 order by `date` desc 62.94
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151589 order by `date` desc 54.45
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151569 order by `date` desc 61.01
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151568 order by `date` desc 55.31
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151463 order by `date` desc 55.9
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151462 order by `date` desc 70.1
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151461 order by `date` desc 62.57
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151928 order by `date` desc 52.36
select `presence_option_id`, `note`, `date` from `presence_lists` where `player_id` = 151937 order by `date` desc 48.15
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.21
select `value` from `users_configs` where `users_configs`.`user_id` = 116 and `users_configs`.`user_id` is not null and `key` = 'team_overview_config' limit 1 1.5
select * from `parameters` where `parameters`.`id` = '18493' limit 1 1.19
select count(*) as aggregate from `users_deactivated_parameters` where `user_id` = 116 and `parameter_id` = 18493 0.74
select * from `users_parameters` where `users_parameters`.`parameter_id` = 18493 and `users_parameters`.`parameter_id` is not null and `parameter_id` = 18493 and `user_id` = 116 limit 1 0.78
select * from `files` where `files`.`id` = 18796 and `files`.`id` is not null limit 1 1.19
select * from `files` where `files`.`id` = 18796 and `files`.`id` is not null limit 1 1.18
select * from `players` where `players`.`id` = 108812 limit 1 1.22
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.2
select * from `acute_chronic_configs` where `acute_chronic_configs`.`user_id` = 116 and `acute_chronic_configs`.`user_id` is not null and `parameter_id` = '18493' and `player_id` is null limit 1 0.79
select * from `players` where `players`.`id` = 107728 limit 1 1.08
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.16
select * from `players` where `players`.`id` = 87121 limit 1 1.05
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.18
select * from `players` where `players`.`id` = 87119 limit 1 1.02
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.09
select * from `players` where `players`.`id` = 36128 limit 1 1.06
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.11
select * from `players` where `players`.`id` = 17027 limit 1 1.01
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.02
select * from `players` where `players`.`id` = 17013 limit 1 1.14
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.07
select * from `players` where `players`.`id` = 17005 limit 1 0.99
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.03
select * from `players` where `players`.`id` = 16999 limit 1 1.03
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.92
select * from `players` where `players`.`id` = 148665 limit 1 1.06
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.04
select * from `players` where `players`.`id` = 149051 limit 1 1.18
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.26
select * from `players` where `players`.`id` = 149053 limit 1 1.04
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.03
select * from `players` where `players`.`id` = 149632 limit 1 1.09
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.15
select * from `players` where `players`.`id` = 149726 limit 1 1
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.06
select * from `players` where `players`.`id` = 149735 limit 1 1.04
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.17
select * from `players` where `players`.`id` = 149877 limit 1 1.15
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.18
select * from `players` where `players`.`id` = 149933 limit 1 1.09
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.06
select * from `players` where `players`.`id` = 149976 limit 1 1.03
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.1
select * from `players` where `players`.`id` = 149977 limit 1 1.12
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.12
select * from `players` where `players`.`id` = 149982 limit 1 1.06
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.05
select * from `players` where `players`.`id` = 149983 limit 1 1.08
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.2
select * from `players` where `players`.`id` = 151652 limit 1 1.05
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.09
select * from `players` where `players`.`id` = 151697 limit 1 1.19
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.23
select * from `players` where `players`.`id` = 151596 limit 1 1
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.45
select * from `players` where `players`.`id` = 151594 limit 1 0.9
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.22
select * from `players` where `players`.`id` = 151591 limit 1 0.91
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.26
select * from `players` where `players`.`id` = 151589 limit 1 0.95
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.16
select * from `players` where `players`.`id` = 151569 limit 1 1.09
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.17
select * from `players` where `players`.`id` = 151568 limit 1 1
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.01
select * from `players` where `players`.`id` = 151463 limit 1 0.91
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 0.91
select * from `players` where `players`.`id` = 151462 limit 1 0.99
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.22
select * from `players` where `players`.`id` = 151461 limit 1 0.88
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.1
select * from `players` where `players`.`id` = 151928 limit 1 0.88
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.23
select * from `players` where `players`.`id` = 151937 limit 1 1.13
select * from `users` where `users`.`id` = 116 and `users`.`deleted_at` is null limit 1 1.17
select * from `files` where `files`.`id` = 181444 and `files`.`id` is not null limit 1 0.83
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 108812 and `last_name` = 'Steinwender' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.22
select * from `auth_sessions` where `id` = 'RxOKdEYt9GEK8NLHBFzXjv1CPDm0yy3GoZwnQbDg' limit 1 2.37
select * from `positions` where `positions`.`id` = 3317 and `positions`.`id` is not null limit 1 1.04
select * from `files` where `files`.`id` = 184897 and `files`.`id` is not null limit 1 1.08
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 107728 and `last_name` = 'Avdijaj' and `deactivated_at` is null and `first_name` LIKE 'D%' 2.61
select * from `users` where `id` = 116 and `users`.`deleted_at` is null limit 1 1.19
select * from `positions` where `positions`.`id` = 3325 and `positions`.`id` is not null limit 1 0.9
update `auth_sessions` set `payload` = 'YTo0OntzOjY6Il90b2tlbiI7czo0MDoiR3JiS1l4U0lXSnp0VTJac0dzQklLdW51QVh0b3J6VEp2N3pyNjFkRyI7czo1MDoibG9naW5fd2ViXzU5YmEzNmFkZGMyYjJmOTQwMTU4MGYwMTRjN2Y1OGVhNGUzMDk4OWQiO2k6MTE2O3M6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjI3OiJodHRwOi8vbG9jYWxob3N0OjMzMDA0L2hvbWUiO319', `last_activity` = 1705549195, `user_id` = 116, `ip_address` = '172.18.0.1', `user_agent` = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' where `id` = 'RxOKdEYt9GEK8NLHBFzXjv1CPDm0yy3GoZwnQbDg' 1.65
select * from `files` where `files`.`id` = 181435 and `files`.`id` is not null limit 1 0.81
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 87121 and `last_name` = 'Lemmerer' and `deactivated_at` is null and `first_name` LIKE 'J%' 2.56
select * from `positions` where `positions`.`id` = 3327 and `positions`.`id` is not null limit 1 1.06
select * from `files` where `files`.`id` = 181441 and `files`.`id` is not null limit 1 1.13
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 87119 and `last_name` = 'Pußwald' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.75
select * from `positions` where `positions`.`id` = 3316 and `positions`.`id` is not null limit 1 1.18
select * from `files` where `files`.`id` = 182638 and `files`.`id` is not null limit 1 1.24
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 36128 and `last_name` = 'Gollner' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.46
select * from `positions` where `positions`.`id` = 3317 and `positions`.`id` is not null limit 1 1.36
select * from `files` where `files`.`id` = 181436 and `files`.`id` is not null limit 1 1.18
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 17027 and `last_name` = 'Heil' and `deactivated_at` is null and `first_name` LIKE 'J%' 2.41
select * from `positions` where `positions`.`id` = 3319 and `positions`.`id` is not null limit 1 0.96
select * from `files` where `files`.`id` = 181451 and `files`.`id` is not null limit 1 0.99
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 17013 and `last_name` = 'Kainz' and `deactivated_at` is null and `first_name` LIKE 'T%' 2.53
select * from `positions` where `positions`.`id` = 3321 and `positions`.`id` is not null limit 1 0.84
select * from `files` where `files`.`id` = 181450 and `files`.`id` is not null limit 1 0.96
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 17005 and `last_name` = 'Rotter' and `deactivated_at` is null and `first_name` LIKE 'T%' 2.3
select * from `positions` where `positions`.`id` = 3317 and `positions`.`id` is not null limit 1 0.77
select * from `files` where `files`.`id` = 181447 and `files`.`id` is not null limit 1 0.95
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 16999 and `last_name` = 'Sallinger' and `deactivated_at` is null and `first_name` LIKE 'R%' 2.37
select * from `positions` where `positions`.`id` = 3316 and `positions`.`id` is not null limit 1 0.87
select * from `files` where `files`.`id` = 181439 and `files`.`id` is not null limit 1 0.88
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 148665 and `last_name` = 'Kröpfl' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.23
select * from `positions` where `positions`.`id` = 3326 and `positions`.`id` is not null limit 1 0.86
select * from `files` where `files`.`id` = 181442 and `files`.`id` is not null limit 1 0.94
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149051 and `last_name` = 'Sellinger' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.26
select * from `positions` where `positions`.`id` = 3321 and `positions`.`id` is not null limit 1 0.85
select * from `files` where `files`.`id` = 181430 and `files`.`id` is not null limit 1 0.83
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149053 and `last_name` = 'Wilfinger' and `deactivated_at` is null and `first_name` LIKE 'F%' 2.33
select * from `positions` where `positions`.`id` = 3320 and `positions`.`id` is not null limit 1 0.83
select * from `files` where `files`.`id` = 181438 and `files`.`id` is not null limit 1 0.86
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149632 and `last_name` = 'Karamarko' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.58
select * from `positions` where `positions`.`id` = 3317 and `positions`.`id` is not null limit 1 0.92
select * from `files` where `files`.`id` = 181428 and `files`.`id` is not null limit 1 0.89
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149726 and `last_name` = 'Frieser' and `deactivated_at` is null and `first_name` LIKE 'D%' 2.53
select * from `positions` where `positions`.`id` = 3326 and `positions`.`id` is not null limit 1 0.88
select * from `files` where `files`.`id` = 181448 and `files`.`id` is not null limit 1 0.93
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149735 and `last_name` = 'Providence' and `deactivated_at` is null and `first_name` LIKE 'R%' 2.75
select * from `positions` where `positions`.`id` = 3325 and `positions`.`id` is not null limit 1 1.22
select * from `files` where `files`.`id` = 181437 and `files`.`id` is not null limit 1 1.24
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149877 and `last_name` = 'Pfeifer' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.9
select * from `positions` where `positions`.`id` = 3318 and `positions`.`id` is not null limit 1 1.18
select * from `files` where `files`.`id` = 181431 and `files`.`id` is not null limit 1 1.08
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149933 and `last_name` = 'Ehmann' and `deactivated_at` is null and `first_name` LIKE 'F%' 3.34
select * from `positions` where `positions`.`id` = 3316 and `positions`.`id` is not null limit 1 1.15
select * from `files` where `files`.`id` = 181445 and `files`.`id` is not null limit 1 1.12
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149976 and `last_name` = 'Diakité' and `deactivated_at` is null and `first_name` LIKE 'O%' 2.84
select * from `positions` where `positions`.`id` = 3320 and `positions`.`id` is not null limit 1 1.2
select * from `files` where `files`.`id` = 182637 and `files`.`id` is not null limit 1 1.23
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149977 and `last_name` = 'Sangare' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.79
select * from `positions` where `positions`.`id` = 3324 and `positions`.`id` is not null limit 1 0.98
select * from `files` where `files`.`id` = 184898 and `files`.`id` is not null limit 1 1.15
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149982 and `last_name` = 'Halwachs' and `deactivated_at` is null and `first_name` LIKE 'J%' 2.76
select * from `positions` where `positions`.`id` = 3320 and `positions`.`id` is not null limit 1 1
select * from `files` where `files`.`id` = 181429 and `files`.`id` is not null limit 1 1.06
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 149983 and `last_name` = 'Prokop' and `deactivated_at` is null and `first_name` LIKE 'D%' 2.7
select * from `positions` where `positions`.`id` = 3325 and `positions`.`id` is not null limit 1 1.26
select * from `files` where `files`.`id` = 181433 and `files`.`id` is not null limit 1 1.22
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151652 and `last_name` = 'Bowat' and `deactivated_at` is null and `first_name` LIKE 'I%' 3.2
select * from `positions` where `positions`.`id` = 3317 and `positions`.`id` is not null limit 1 1.15
select * from `files` where `files`.`id` = 182636 and `files`.`id` is not null limit 1 1.1
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151697 and `last_name` = 'Lind' and `deactivated_at` is null and `first_name` LIKE 'H%' 2.95
select * from `positions` where `positions`.`id` = 3321 and `positions`.`id` is not null limit 1 1.18
select * from `files` where `files`.`id` = 181425 and `files`.`id` is not null limit 1 1.08
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151596 and `last_name` = 'Lang' and `deactivated_at` is null and `first_name` LIKE 'C%' 2.95
select * from `positions` where `positions`.`id` = 3324 and `positions`.`id` is not null limit 1 1.2
select * from `files` where `files`.`id` = 182639 and `files`.`id` is not null limit 1 1.1
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151594 and `last_name` = 'Fillafer' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.46
select * from `positions` where `positions`.`id` = 3326 and `positions`.`id` is not null limit 1 1.16
select * from `files` where `files`.`id` = 181449 and `files`.`id` is not null limit 1 1.24
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151591 and `last_name` = 'Schutti' and `deactivated_at` is null and `first_name` LIKE 'S%' 2.92
select * from `positions` where `positions`.`id` = 3318 and `positions`.`id` is not null limit 1 1.06
select * from `files` where `files`.`id` = 181426 and `files`.`id` is not null limit 1 1.27
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151589 and `last_name` = 'Urdl' and `deactivated_at` is null and `first_name` LIKE 'C%' 3.05
select * from `positions` where `positions`.`id` = 3321 and `positions`.`id` is not null limit 1 0.94
select * from `files` where `files`.`id` = 181427 and `files`.`id` is not null limit 1 1
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151569 and `last_name` = 'Kovacevic' and `deactivated_at` is null and `first_name` LIKE 'D%' 2.59
select * from `positions` where `positions`.`id` = 3319 and `positions`.`id` is not null limit 1 0.94
select * from `files` where `files`.`id` = 181446 and `files`.`id` is not null limit 1 1.08
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151568 and `last_name` = 'Komposch' and `deactivated_at` is null and `first_name` LIKE 'P%' 2.54
select * from `positions` where `positions`.`id` = 3317 and `positions`.`id` is not null limit 1 1.03
select * from `files` where `files`.`id` = 181443 and `files`.`id` is not null limit 1 1.09
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151463 and `last_name` = 'Entrup' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.5
select * from `positions` where `positions`.`id` = 3327 and `positions`.`id` is not null limit 1 1.02
select * from `files` where `files`.`id` = 181440 and `files`.`id` is not null limit 1 1.25
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151462 and `last_name` = 'Postl' and `deactivated_at` is null and `first_name` LIKE 'M%' 2.6
select * from `positions` where `positions`.`id` = 3327 and `positions`.`id` is not null limit 1 1.21
select * from `files` where `files`.`id` = 181432 and `files`.`id` is not null limit 1 1.24
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151461 and `last_name` = 'Postl' and `deactivated_at` is null and `first_name` LIKE 'H%' 2.87
select * from `positions` where `positions`.`id` = 3316 and `positions`.`id` is not null limit 1 1.1
select * from `files` where `files`.`id` = 184899 and `files`.`id` is not null limit 1 1.16
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151928 and `last_name` = 'Knoflach' and `deactivated_at` is null and `first_name` LIKE 'T%' 2.73
select * from `positions` where `positions`.`id` = 3316 and `positions`.`id` is not null limit 1 1.27
select * from `files` where `files`.`id` = 184896 and `files`.`id` is not null limit 1 1.26
select count(*) as aggregate from `players` where `players`.`user_id` = 116 and `players`.`user_id` is not null and `id` != 151937 and `last_name` = 'Brückner' and `deactivated_at` is null and `first_name` LIKE 'A%' 2.94
select * from `positions` where `positions`.`id` = 3319 and `positions`.`id` is not null limit 1 1.05
update `auth_sessions` set `payload` = 'YTo0OntzOjY6Il90b2tlbiI7czo0MDoiR3JiS1l4U0lXSnp0VTJac0dzQklLdW51QVh0b3J6VEp2N3pyNjFkRyI7czo1MDoibG9naW5fd2ViXzU5YmEzNmFkZGMyYjJmOTQwMTU4MGYwMTRjN2Y1OGVhNGUzMDk4OWQiO2k6MTE2O3M6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjI3OiJodHRwOi8vbG9jYWxob3N0OjMzMDA0L2hvbWUiO319', `last_activity` = 1705549195, `user_id` = 116, `ip_address` = '172.18.0.1', `user_agent` = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36' where `id` = 'RxOKdEYt9GEK8NLHBFzXjv1CPDm0yy3GoZwnQbDg' 1.06